-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
44 lines (33 loc) · 959 Bytes
/
base.html
File metadata and controls
44 lines (33 loc) · 959 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ryan Muehe</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div id="container">
<header>
<h1><img
src="images/logo.jpg"
width="50"
height="50"
alt="Logo of Ryan"
title="Logo of Ryan"> Ryan Muehe</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</header>
<main>
<p id="content">Main Text</p>
</main>
<footer>
<p id="copyright">© 2019 Ryan Muehe</p>
</footer>
</div>
</body>
</html>