-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
40 lines (26 loc) · 1.02 KB
/
contact.html
File metadata and controls
40 lines (26 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta chareset="UTF-8">
<title>About Me </title>
<link rel="stylesheet" type="text/css" href="static/css/header.css">
<link rel="stylesheet" type="text/css" href="static/css/main.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<div class = navBar>
<a href = "index.html" class = "navLink left ">HOME</a>
<a href = "projects.html" class = "navLink left ">PROJECTS</a>
<a href = "index.html" class = "logo"><img class = logoImage src="static/images/benj.png"></a>
<a href = "about.html" class = "navLink right ">ABOUT</a>
<a href = "contact.html" class = "navLink right ">CONTACT</a>
</div>
<div class = "aboutBody">
<h1 class = "aboutTitle">Contact</h1>
<div class = "contactInfo">
<div class = "contactDetail contactName">Name: <span class = contactInside>Ben Walley</span></div>
<div class = "contactDetail contactEmail">E-mail: <span class = contactInside>BenWalleyOrigami@gmail.com</span></div>
</div>
</div>
</body>
</html>