-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (35 loc) · 894 Bytes
/
index.html
File metadata and controls
61 lines (35 loc) · 894 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tyrone King WebDev Portfolio</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header>
<h1> Tyrone King </h1>
<h2> Portfolio <h2>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Bio</a></li>
<li><a href="assignments.html">Assignments</a></li>
<li><a href="final-project.html">Final Project</a></li>
</ul>
</nav>
<main>
<figure>
<img src="img/welcome-new-member.jpg" alt="Welcome new Member">
<figcaption>image from <a href="https://makeameme.org/meme/welcome-new-member">Make A Meme</a></figcaption>
</figure>
<p>Welcome to my Site
</p>
</main>
<footer>
<p>©Tyrone King, 2023</p>
</footer>
</div><!-- close "container" -->
</body>
</html>