-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (39 loc) · 1 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Kevin's Family</title>
</head>
<body>
<nav>
<ul id="fix1">
<li class="navmenu" id="fix2">
<a class="menu" href="#">Menu</a>
<ul class="navlinks">
<li><a href="index.html">Home</a></li>
<li><a href="kevin.html">Kevin</a></li>
<li><a href="ruthAnn.html">Ruth Ann</a></li>
<li><a href="stephen.html">Stephen</a></li>
<li><a href="marilyn.html">Marilyn</a></li>
</ul>
</li>
</ul>
</nav>
<section class="hero-image">
<div class="hero-text">
<h1>Kevin Bell</h1>
<a href="https://www.familysearch.org/" target="_blank"><button>Discover Family</button></a>
</div>
</section>
<footer>
Copyright © 2019 Kevin Bell LLC<br>
<a href="mailto:kevinbellr@gmail.com" target="_blank">kevin@bell.com</a>
</footer>
</body>
</html>