-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (52 loc) · 2.03 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
58
59
<!DOCTYPE HTML>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136582576-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136582576-1');
</script>
<meta charset="UTF-8">
<title>Taylor MacMillan</title>
<link href="css/main.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href='favicon.ico'/>
</head>
<nav>
<div id="top-rect"></div>
<ul class="nav-bar">
<li><a href="index.html">ABOUT</a></li>
<li><a href="experience.html">EXPERIENCE</a></li>
<li id="logo"><a href="index.html" id="initials"><img src="img/initials_icon.png"></a></li>
<li><a href="Resume.pdf" target="blank">RESUME</a></li>
<li><a href="contact.html" class="selected">CONTACT</a></li>
</ul>
</nav>
<body>
<div class="contact-me-invite">
<p>Don't be a stranger</p>
<p id="chat-welcome">Let's chat!</p>
</div>
<div class="contact-section">
<p>Have any questions or comments for me? Just want to chat? Feel free to get in touch with me, I'd be more than happy to answer your questions!</p>
</div>
<div class="contact-all-links">
<div class="contact-link">
<img class="icon" src="img/email_icon.png"/>
<a href="mailto:[email protected]" target="blank" class="link-text">[email protected]</a>
</div>
<div class="contact-link">
<img class="icon" src="img/linkedin_icon.png"/>
<a href="https://www.linkedin.com/in/taylor-macmillan" target="blank" class="link-text">linkedin.com/in/taylor-macmillan</a>
</div>
</div>
<div id="contact">
<hr/>
<a target="blank" href="mailto:[email protected]"/><img class="link" src="img/email_icon.png"/></a>
<span class="disclaimer">Designed and built by Taylor MacMillan</span>
<a target="blank" href="https://www.linkedin.com/in/taylor-macmillan"/><img class="link" src="img/linkedin_icon.png"/></a>
</div>
</body>
</html>