-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alyssa Wang -- Home </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="stylesheets/home.css">
</head>
<body>
<nav class="navbar navbar-expand-md fixed-top">
<!-- <a class="navbar-brand" href="index.html">Logo</a>
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#main-navigation">
<span class="navbar-toggler-icon"></span>
</button> -->
<div class="collapse navbar-collapse" id="main-navigation">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resumé</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li> -->
</ul>
</div>
</nav>
<div class="container">
<img id="profile-pic" src="alyssa.jpg" alt="Alyssa Wang">
<div class="typewriter" style="margin-bottom: 10px">
<h1> ALYSSA WANG </h1>
</div>
<span> SWE at <a href="https://www.mitre.org/">MITRE</a> </span>
<span> <a href="https://www.williams.edu/"> Williams College </a> '20 </span>
<span>
<a href="https://csci.williams.edu/"> Computer Science </a> •
<a href="https://comp-lit.williams.edu/"> Comparative Literature </a>
</span>
<span>
<a href="https://github.com/AlyssaWang"> Github </a> •
<a href="https://linkedin.com/in/alyssacwang"> LinkedIn </a>
</span>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script src="behavior/style-switcher.js"></script>
</body>
</html>