-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
75 lines (70 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<title>Bryana Knight</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/styles-mobile.css" media="only screen and (max-width: 767px)">
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<body>
<header id="links">
<nav class="Main" id="main">
<h1>
<img class="Headshot" src="images/bryHeadshot.png" alt="Picture of Bryana Knight" />
<a href="./index.html" class="Active">Bryana Knight</a>
</h1>
<button class="collapsed Menu" id="menu">Menu<span class="Top"></span>
<span class="Middle"></span>
<span class="Bottom"></span>
</button>
<nav>
<a href="./index.html" class="Active">Home</a>
<a href="./posts.html">Posts</a>
<a href="./talks.html">Talks</a>
</ul>
</nav>
</nav>
</header>
<main id="content">
<section class="Home Container">
<h1><mark>Hi!</mark></h1>
<p>My name is Bryana Knight and I am a DC native living in Boston by way of Mallorca, Spain, Denver and Seattle.</p>
<p>I work at GitHub as a Software Engineer. I’m also a tech lead for the Women Who Code Boston Chapter.</p>
<p>Prior to GitHub, I worked for a Healthcare startup acquired by Aetna, and before that, a startup called LivingSocial (remember the daily deals craze?!).</p>
<p>I occasionally write thoughts technical and otherwise down here. If you’d like to get in touch, please reach out!</p>
</section>
</main>
<footer>
<nav class="footer">
<a class="socialLink Github" href="https://github.com/bryanaknight" target="_blank">
Github
</a>
<a class="socialLink Email" href="mailto:brknig11@gmail.com">
Email
</a>
<a class="socialLink LinkedIn" href="https://www.linkedin.com/in/bryanaknight" target="_blank">
LinkedIn
</a>
<a class="socialLink Twitter" href="https://twitter.com/bryanaknight" target="_blank">
Twitter
</a>
</nav>
</footer>
<script>
document.getElementById('menu').addEventListener('click', toggleMenu);
function toggleMenu() {
if (this.classList.contains("collapsed")) {
this.classList.remove("collapsed");
document.getElementById("links").classList.remove("collapsed")
this.classList.add("expanded");
document.getElementById("links").classList.add("expanded")
} else {
this.classList.remove("expanded");
document.getElementById("links").classList.remove("expanded")
this.classList.add("collapsed");
document.getElementById("links").classList.add("collapsed")
}
}
</script>
</body>