-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
44 lines (44 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Simon Jam</title>
<link rel="stylesheet" type="text/css" href="/css/contact.css">
</head>
<body>
<nav>
<div class="nav-logo">
<h1>Simon Jam</h1>
</div>
<div class="nav-links">
<a href="index.html">About</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience</a>
<a href="contact.html"><strong>Contact</strong></a>
<a href="schedule.html">Schedule</a>
</div>
</nav>
<main>
<div class="grid-container">
<div class="grid-item">
<h1>Contact Info</h1>
<h3>
Email
</h3>
<p>
</p>
<h3>
Phone number
</h3>
<p>
001-001-0001
</p>
</div>
<div class="grid-item">
<h1>Socials</h1>
<a href="https://www.linkedin.com/in/simon-jam-818a141b3/"><img src="/img/linkedin.jpg" alt="LinkedIn"></a>
</div>
</div>
</main>
</body>
</html>