-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 982 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<script src="javascript.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div id="Logo">
<h1>Jacob Edwards</h1>
</div>
<div id="links">
<a class="active" href="#">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact Me</a>
</div>
</nav>
<main>
<div class="Face">
<img src="IMG_0296.jpg" width="500">
</div>
<div class="Wumbo">
<h2>Front End Developer</h2>
<p> "Elevating the user experience for companies like yours."
</p>
<h3 class="quote">
"There is only a finger's difference between a wise man and a fool."
<br>
-Diogenes
</h3>
</div>
</main>
</body>
</html>