17 lines
374 B
HTML
17 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Adding CSS</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Three Methods of Adding CSS</h1>
|
|
<!-- Create 3 Links to The 3 Webpages: inline, internal and external -->
|
|
<a href="./internal.html">Internal CSS</a>
|
|
<a href="./inline.html">Inline CSS</a>
|
|
<a href="./external.html">External CSS</a>
|
|
</body>
|
|
|
|
</html> |