-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (27 loc) · 701 Bytes
/
index.html
File metadata and controls
31 lines (27 loc) · 701 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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Webpage - Index</title>
</head>
<body>
<h1>My Short Bio</h1>
<p>
Hello, My name is Marques Kidd Jr, and this is a short bio about me.
</p>
<img src="img/img1.jpg" alt="My Picture">
<h2>Courses This Semester</h2>
<ul>
<li>COMP 180</li>
<li>COMP 200</li>
<li>COMP 300</li>
<li>COMP 322</li>
<li>COMP 360</li>
<li>COMP 390</li>
</ul>
<a href="introduction.html">Go to Introduction Page</a>
<br>
<a href="little_prince.html">Read "The Little Prince"</a>
</body>
</html>