-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
31 lines (28 loc) · 941 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
</head>
<body>
<header></header>
<nav class="navbar">
<div class="navdiv">
<div class="logo"><a href="#">Xavier Hargrove</a></div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Portfolio</a></li>
</ul>
</div>
</nav>
</header>
<section class="home">
<div class="content">
<h2>Hi, I'm <span>Xavier Hargrove</span></h2>
<h3>Frontend Developer</h3>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Iste enim illo soluta at maiores harum adipisci saepe assumenda labore? Voluptatem in totam, aliquid natus similique facere culpa dicta ipsum impedit.</p>
</div>
</body>
</html>