forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 814 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CSS Exercises</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<!-- You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites! --->
<h1>My Very Cool Web Page</h1>
<h2>Why this Website is Very Cool</h2>
<ol>
<li>I made it!</li>
<li>This website is colorful!</li>
</ol>
<h2 id="cool-text">Why I love Web Development</h2>
<p>Web Development is a very cool skill that I love learning!</p>
<p>I love making websites because all I have to do is reload the page to see the changes I have made!</p>
</body>
</html>