-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
45 lines (44 loc) · 1.65 KB
/
contact.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
<!--*****************************************************************************************
//
// $Workfile: contact.html $
// $Author: Brian Fugate $
//
// Codecademy Full-Stack Engineer Course
// Building Interactive Websites Portfolio Project: Personal Portfolio Website
//
//****************************************************************************************-->
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link href="./fontawesome/css/fontawesome.css" rel="stylesheet">
<link href="./fontawesome/css/regular.css" rel="stylesheet">
<title>Brian Fugate Portfolio</title>
</head>
<body>
<header>
<h1>Brian Fugate</h1>
</header>
<nav>
<ul>
<li><a href="index.html#about">About Me</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#skills">Skills</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
<section id="contact">
<h2>Contact</h2>
<p>Click the envelope icon below to send me an email. When I am ready to actively seek employment I will add a
LinkedIn link as well.</p>
<ul>
<li><a href="mailto:[email protected]"><i class="fa-regular fa-envelope"></i></a></li>
</ul>
</section>
</body>
</html>