KnowledgeBoat Logo
|

Computer Applications

Where do you place the code to associate a Web page with an external style sheet ?

CSS

10 Likes

Answer

To associate a Web page with an external style sheet, we place the code in the head tag in the following manner :

<HEAD>
<LINK REL = "STYLE SHEET" TYPE = "TEXT/CSS" HREF = "SAMPLE.CSS">
</HEAD>

where, sample.css is the name of the CSS file.

Answered By

5 Likes


Related Questions