-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
34 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>About Me</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">About Me</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<img src="./images/portrait.jpg" alt="A picture of Sheldon">
<h1>Sheldon Corkery</h1>
<p style="font-family: 'Courier New', Courier, monospace; color: brown">Software Engineer</p>
<p>Hi, I'm a student at Iowa State University. I'm working on this project as a part of my 3190 Construction of UI class!</p>
</body>
<footer>
<p>Check me out on:</p>
<a href="https://www.github.com/sheldoncork" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/sheldon-corkery-33b443327/" target="_blank"><i class="fab fa-linkedin"></i></a>
<p>© 2024 Sheldon Corkery</p>
</footer>
</html>