-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment1.html
More file actions
27 lines (26 loc) · 981 Bytes
/
Assignment1.html
File metadata and controls
27 lines (26 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html>
<div>
<head>
<title>My First Website</title>
<link rel="stylesheet" href="css/index-css.css">
</head>
<body>
<h1>My First Website</h1>
<p>Hi, Welcome to my website! Here are some things I enjoy.</p>
<ul>
<li>Web Development</li>
<li>Chess</li>
<li>Reading</li>
<li>Learning</li>
</ul>
<h2>Favorite Quotes</h2>
<blockquote>
<p>The price of anything is the amount of life you exchange for it.</p>
</blockquote>
<blockquote>
<p>Everyone needs a little inspiration from time to time.</p>
</blockquote>
</body>
</div>
</html>