-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
38 lines (33 loc) · 964 Bytes
/
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
<!doctype html>
<!-- CONTACT PAGE -->
<html>
<head>
<title>Sarah Bawabe</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<meta content="width=device-width, initial-scale=1" name="viewport" />
</head>
<div class="topBox">
<div id="nameBox">
<img src="name.png" id="name">
</div>
<div id="optionsBox">
<nav>
<a href="index.html">home</a>
<a href="resume.html">resume/cv</a>
<a href="contact.html" id="selected">contact</a>
</nav>
</div>
</div>
<div id="bottomBox">
<div class="infoBox">
<img src="portrait.jpg" id="pic">
<div id="contactInfo">
<h1> sarah bawabe </h1>
<p> [email protected] </p>
</div>
</div>
</div>
</html>