100-Days-Of-Code/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/index.html
Arcron ArchLinux e3b2438a78 Improved Code
2024-10-28 19:46:20 +05:30

17 lines
527 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="http://127.0.0.1:3000/5.1+Adding+CSS/5.1. Adding CSS/internal.html">Internal CSS</a>
<a href="http://127.0.0.1:3000/5.1+Adding+CSS/5.1. Adding CSS/inline.html">Inline CSS</a>
<a href="http://127.0.0.1:3000/5.1+Adding+CSS/5.1. Adding CSS/external.html">External CSS</a>
</body>
</html>