-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
50 lines (37 loc) · 1.51 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Raymond Wood - About</title>
<meta name="description" content="A portfolio page">
<meta name="author" content="Raymond Wood">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<nav>
<h1>Raymond Wood</h1>
<ul class="navigation-items">
<li class="navigation-item"><a href="./index.html #about-me">About Me</a></li>
<li class="navigation-item"><a href="./index.html #projects">Projects</a></li>
<li class="navigation-item"><a href="./index.html #skills">Skills</a></li>
<li class="navigation-item"><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="contact">
<div class="contact-text-container">
<h2>Contact</h2>
<p>Contact me at:</p>
<a href="mailto:wood.raymond79@gmail.com">wood.raymond79@gmail.com</a>
</div>
</section> <!------ End of Contact Section ------>
</main>
<footer>
</footer>
<!------ Load javascript file ------>
<script src="./js/index.js" type="text/javascript"></script>
</body>
</html>