-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.68 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.68 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="https://autoinsuranceportal.blogspot.com/favicon.ico" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./css/normalize.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./css/parking.css" media="screen" title="no title" charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Fellows parking list</title>
</head>
<body>
<header>
<h1>Code Fellows Parking</h1>
</header>
<img src="./maplist.png" alt="map of parking lots"/>
<div class="distance">
<h2>Parking by distance</h2>
<ul>
<li>2846 3rd Ave <span>$4.90/hr</span></li>
<li>Pacific Science Center <span>$3.00/hr</span></li>
<li>2938 3rd Ave <span>$2.45/hr</span></li>
<li>112 Warren ave <span>$3.05/hr</span></li>
<li>1000 Eagle <span>$5.00/hr</span></li>
</div>
<div class="price">
<h2>Parking by price</h2>
<ul>
<li>2938 3rd Ave <span>$2.45/hr</span></li>
<li>Pacific Science Center <span>$3.00/hr</span></li>
<li>112 Warren ave <span>$3.05/hr</span></li>
<li>2846 3rd Ave <span>$4.90/hr</span></li>
<li>1000 Eagle <span>$5.00/hr</span></li>
</div>
</ul>
<footer>
<a href="weekend.html">Show Weekend/Evening pricing</a>
</footer>
</body>
</html>