PDA

View Full Version : Explain how can you integrate CSS file to your webpage?



sulbha
05-02-2017, 06:53 AM
Explain how can you integrate CSS file to your webpage?

Barbara
07-27-2017, 09:28 AM
An external style sheet may be linked to an HTML document through HTML's LINK element.

For example:
<LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen>
The <LINK> tag is placed in the document HEAD section. The optional TYPE attribute is used to specify a media type—text/CSS for a Cascading Style Sheet - allowing browsers to ignore style sheet types that they do not support.