Skip to main content

Practical-10

10. Write an example of External Style Sheet.

Code

<!DOCTYPE html>
<html>

<head>
<title>External Style Sheet</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
<h1 class="myclass1">External Style Sheet</h1>
</ul>
</body>

</html>

.myclass1 {
color: red;
}

Output

External Style Sheet

>

Explanation