-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbio.html
More file actions
67 lines (41 loc) · 1.23 KB
/
bio.html
File metadata and controls
67 lines (41 loc) · 1.23 KB
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
62
63
64
65
66
67
<!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>
<header>
<h1> Future Webdev Hopefull Programmer</h1>
</header>
<figure>
<img src="img/Earth.Gif"alt="Earth spinning Gif">
<figcaption>ImageMadebyME</figcaption>
</figure>
<p> I am just starting in web development and I am very excited to learn more over the course of the
semester. I hope to get the skill to develop websites for others at a professional level successfully.
I have always been interested in the more technical side of computers and how the web works.
I love video games movies and pretty much any type of media I consider myself an anime connoisseur.
</p>
</main>
<footer>
<p>©Tyrone King, 2023</p>
</footer>
</div><!-- close "container" -->
</body>
</html>