100-Days-Of-Code/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/solution.html
Arcron ArchLinux 8e5462f8db 100Days
2024-10-26 14:55:49 +05:30

17 lines
359 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="./inline.html">Inline</a>
<a href="./internal.html">Internal</a>
<a href="./external.html">External</a>
</body>
</html>