-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 926 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 926 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>Robert Boder Home</title>
<meta charset="UTF-8">
<meta name="description" content="Robert Boder's Personal Webpage">
<meta name="author" content="Robert Boder">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
</head>
<body onload="getDog()">
<div class="topnav" id="nav-bar">
<nav>
<a class="active" href="index.html">Home</a>
<a href="projects.html">Projects Portfolio</a>
<a href="about.html"s>About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<div id="main">
<img id="buster" src="img/IMG_6535.jpeg" width=25% alt="Photograph of a Shiba Inu dog">
</div>
<footer>
<p>© Robert Boder. Email: <a href="mailto:rboder@gmail.com">
rboder@gmail.com</a></p>
</footer>
</body>
</html>