-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
101 lines (93 loc) · 3.65 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Dosis:300" rel="stylesheet">
<!-- Blog stylesheet -->
<link href="css/blog/style.css" rel="stylesheet" type="text/css">
<link href="css/Genericons/genericons.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<title>shawna jean</title>
<link rel="canonical" href="https://shawnajean.tech">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@shawnajeanr">
<meta name="twitter:creator" content="@shawnajeanr">
<meta name="twitter:title" content="shawna jean">
<meta name="twitter:url" content="https://shawnajean.tech/">
</head>
<body>
<div class="container">
<div id="content" class="content">
<div id="popover">
<div class="form">
<span class="close" onclick ="div_hide()">Close</span>
<form action="https://formspree.io/hello@shawnajean.tech" method="POST">
<input type="hidden" name="_subject" value="New request from shawnajean.tech" />
<input type="text" name="_gotcha" style="display:none" />
<!--<input type="hidden" name="_next" value="//site.io/thanks.html" /> -->
<ul>
<li>
<label class="wp-notice">WordPress.com users: Please <a class="wp-contact-link" href="https://wordpress.com/help/contact/">contact WP.com's support team directly</a>. I no longer work there.</label>
</li>
<li>
<input type="text" name="name" id="name" required />
<label for="name">Name</label>
</li>
<li>
<input type="email" name="_replyto" id="email" required />
<label for="email">Email</label>
</li>
<li>
<input type="text" name="subject" id="subject" required />
<label for="subject">Subject</label>
</li>
<li>
<textarea name="message" id="message" required ></textarea>
<label for="message">Text</label>
</li>
<input type="submit" value="Send">
</ul>
</form>
</div>
</div>
<div class="wrap">
<h1>Shawna Jean</h1>
<nav>
<ul>
<li class="button" id="popup" onclick="div_show()">Get in Touch</li>
<li><a href="https://me.shawnajean.tech">Me</a></li>
<li><a href="https://tech.shawnajean.tech">Tech</a></li>
<li><a href="https://resume.shawnajean.tech">Resume</a></li>
</ul>
</nav>
</div>
</div>
<footer>
<ul class="social">
<li><a href="mailto:hello@shawnajean.tech"><span class="genericon genericon-mail"></span></a></li>
<li><a href="https://twitter.com/shawnajeanr"><span class="genericon genericon-twitter"></span></a></li>
<li><a href="https://github.com/shawnajean"><span class="genericon genericon-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/shawnajean"><span class="genericon genericon-linkedin"></span></a></li>
</ul>
</footer>
</div>
<script>
function div_show() {
document.getElementById('popover').style.display = "block";
}
function div_hide(){
document.getElementById('popover').style.display = "none";
}
document.onkeydown = function(evt) {
evt = evt || window.event;
if (evt.keyCode == 27) { // escape key maps to keycode `27`
div_hide();
}
};
</script>
</body>
</html>