-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite-structure
More file actions
32 lines (28 loc) · 869 Bytes
/
site-structure
File metadata and controls
32 lines (28 loc) · 869 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
<!DOCTYPE html>
<html>
<head>
<title>Ollie Bike Sharing</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body><div class="container">
<div class="nav">
<h2>Ollie</h2>
<ul>
<li>sign up</li>
<li>search bikes</li>
<li>reserve a bike</li>
<li>about us</li>
</ul>
</div>
<div class="main">
<h1>Ollie Bike Sharing</h1>
<h3>Share Your Pedals with the World</h3>
<p>Need a set of wheels while you're in town? Use Ollie to pair your perfect vacation with a stylish, affordable bike rental. Here is a <a href="cities.html">list</a> of cities where you can find us.</p>
<video width="320" height="240" controls>
<source src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-1/ollie.mp4" type="video/mp4">
</video>
</div>
</div>
</body>
</html>