Multiple external style sheets cannot be referenced inside a single HTML document

Options
- True
- False


CORRECT ANSWER : False

Discussion Board
Explanation-

Answer is false, we can referenced multiple external style sheets inside single HTML document.

The CSS file is used as an external style sheet file in HTML document by using a <LINK> tag instead of <STYLE> tag.
The <LINK> tag is placed in the <HEAD> section of the HTML document.

The REL attribute is used to define the relationship between the linked file and the HTML document. REL=StyleSheet specifies a persistent or preferred style while REL="Alternate StyleSheet" defines an alternate style.
An external style sheet is ideal when the style is applied to numerous pages. With an external style sheet, an author could change the look of an entire site by simply changing one file.

Sapna Tongase 02-26-2017 11:03 PM

External CSS

The above statement is false. Correct answer is: false

Style sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the <head> element of an HTML page, or in an external CSS file. Even multiple external style sheets can be referenced inside a single HTML document. Styles can be specified:
- Inside an HTML element inside the
- Head section of an HTML page in an
- External CSS file

Use the HTML style attribute for inline styling. Use the HTML <style> element to define internal CSS. Use the HTML <link> element to refer to an external CSS file. Use the HTML <head> element to store <style> and <link> elements.

External style sheets can be referenced with a full URL or with a path relative to the current web page.

For more information visit http://www.tutorialride.com/web-technologies.htm

Prajakta Pandit 02-24-2017 07:28 AM

how does correct answer is false

if it is not allowed to reference multiple pages in single document then the answer to above question must be TRUE

Shef 02-23-2017 01:04 PM

False-

It is not allowed in CSS to referenced multiple external style sheets in a single HTML document.

Sapna 02-22-2017 05:34 AM

pak

great


bilal 06-7-2015 09:46 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement