-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrame.html
More file actions
30 lines (29 loc) · 810 Bytes
/
Copy pathFrame.html
File metadata and controls
30 lines (29 loc) · 810 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8"/>
<link href="Layout.css" rel="stylesheet" type="text/css" />
<title>Vinyl Record Shop Finder</title>
</head>
<body>
<div id="container">
<div id="header">
<h1>Vinyl Record Store Finder</h1>
</div>
<div id="nav">
<a href="login.html">Login</a>
<a href="show_stores.html">Stores</a>
<a href="map.html">Map</a>
<a href="new_store.html">New Store</a>
<a href="contact.html">Contact Us</a>
</div>
<div id="content">
<h1>WEB CONTENTS</h1>
</div>
<div id="footer">
<p>© Carter Ray</p><img src="Images/logo-powered-by-google.gif" />
</div>
</div>
</body>
</html>