-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
57 lines (53 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--This line is for google maps-->
<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=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<!--This line is for the Icons-->
<script src="https://kit.fontawesome.com/5f0f2c5670.js" crossorigin="anonymous"></script>
<link rel = "stylesheet" href = "main.css">
<title>Gustavo H. Barron</title>
</head>
<body>
<header class = "site-header">
<div class = "hero">
<div header = "header-content container">
<nav class = "social-media">
<a href = "#"> <i class="fa-brands fa-linkedin-in"></i></a>
<a href = "#"> <i class="fa-brands fa-instagram"></i></a>
<a href = "#"> <i class="fa-solid fa-envelope"></i></a>
</nav>
<div class = "information">
<div>
<p class="date"><i class="fa-solid fa-calendar-days"></i>March, 19th</p>
<p class="city"><i class="fa-solid fa-map-pin"></i>San Diego, CA</p>
</div>
<h1 class = "site-name">Gustavo H. Barron</h1>
<p class = "slogan">Software Developer</p>
</div>
</div>
<!--.header-content-->
</div>
<!--.hero-->
</header>
<div class = "nav-bar">
<nav class = "menu">
<!--create 3 links (home, projects, contact)-->
<a href = "index.htmk">Home</a>
<a href = "projects.html">Projects</a>
<a href = "contact.html">Contact</a>
</nav>
</div>
<div class = "container">
<h4>Contact</h4>
</div>
<footer class = "footer">
<p>Website by: Gustavo H. Barron</p>
</footer>
</body>
</html>