-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
48 lines (43 loc) · 1.28 KB
/
contact.html
File metadata and controls
48 lines (43 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel ="stylesheet" href= "styles.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat+Alternates|Patrick+Hand+SC|Patua+One&display|Roboto+Slab&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title> Contact </title>
</head>
<body>
<body>
<header>
<nav>
<label for="toggle">☰</label>
<input type="checkbox" id="toggle"/>
<div class="menu">
<ul>
<li> <a href = index.html> Home </a></li>
<li> <a href = myprojects.html> My Projects </a></li>
<li> <a href = resume.html> Resume </a></li>
<li> <a href = contact.html> Contact </a></li>
</ul>
</div>
</nav>
</header>
<div class="grid">
<div id=contact-photo class="spread">
<img src="contactPhoto.jpg"></img>
</div>
</div>
<div class="grid">
<div id=contact-buttons class="spread">
<ul>
<li>
<button class="c_button" onclick="window.location.href = 'https://www.linkedin.com/in/kwashington55/';"> Connect on LinkedIn! </button>
</li>
<li>
<button class="c_button" onclick="window.location.href = 'mailto:kwashington32@gatech.edu';"> Connect via Email! </button>
</li>
</ul>
</div>
</div>
</body>
</html>