<link href="css/style.css" type="text/css" rel="stylesheet" />
unde "css/style.css" se înlocuieste cu path-ul către fișier
<head>
<title>Using External CSS</title>
<style type=“text/css”>
body{
font-family: arial;
background-color: rgb(185,179,175);
width: 500px;
}
h1 {
color: rgb(255,255,255);
}
</style>
</head>
<P STYLE="color: rgb(0,255,255); font-style:italic;">
Supercalifragilisticexpialidocious, acesta este un paragraf cu textul verde, italic
</P>
<div id = "element1">
conținut;
</div>
<style>
#element1{
/* stilul div-ului cu id-ul element1; */
}
</style>
<div class = "ross caine">
Divul 1
</div>
<div class = "ross">
Divul 2
</div>
<style>
.ross{
background-color: yellow;
color: red;
}
.caine{
font-size: 20px;
}
</style>