-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (55 loc) · 1.67 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="https://kit.fontawesome.com/73484156dc.js"></script>
<title>AF</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="navwrap">
<div class="logo-container">
<a href="./">
<h1 id="logo-h1">Andrew Faria</h1>
</a>
</div>
<div class="nav-links">
<a href="#">About</a>
<a href="./portfolio.html">Portfolio</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</nav>
</header>
<div class="content">
<section>
<h1 id="section-h1">About Me</h1>
<div class="about-wrap">
<img id="about-img" src="./img/me.jpg" alt="me">
<div class="who">
<h3>Who am I?</h3>
<p>My Name is Andrew Faria</p>
<p>I'm an aspiring Web Developer in training.</p>
</div>
<div class="where">
<h3>Where am I?</h3>
<a href="https://www.linkedin.com/in/andrew-faria-988168128/" target="_blank"><i
class="fab fa-linkedin"></i></a>
<a href="https://www.facebook.com/andrew.faria.1441" target="_blank"><i
class="fab fa-facebook-square"></i></a>
</div>
</div>
</section>
</div>
<footer>
<div class="footer-content">
<span>Copyright</span>
</div>
</footer>
</body>
</html>