forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 911 Bytes
/
index.html
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>HTML Exercise</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- DON'T TOUCH ANYTHING ABOVE THIS LINE -->
</head>
<body>
<h1>Why I Love Web Development</h1>
<ol>
<li>It offers a break from moist code</li>
<li>I get see what I create</li>
<li>Other people actually understand what a webpage is</li>
</ol>
<a href="https://education.launchcode.org/intro-to-web-dev-curriculum/html/exercises/index.html" target="_blank">EXERCISES: HTML</a>
<p>The page I will one day create will list my favorite animes and why I like them. The animes will be <br>
ranked but I will have a special section for the anime that, although my not be the best, still hodl a <br>
special place in my heart.</p>
</body>
</html>