-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (70 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
73 lines (70 loc) · 2.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Rent A Bike</title>
</head>
<body>
<div id="back">
<div id="nav">
<div id="symbol">
<img id="logo" src="logo.png" alt="">
<h4 id="logohead">RENTABIKE</h4>
</div>
<div id="options">
<a href="#">About</a>
<a href="#">Catalog</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</div>
<i id="extra" class="fa fa-th"></i>
</div>
<h1 id="heading">HARLEY-DAVIDSON</h1>
<div id="image">
<img src="./bike1.png" alt="">
</div>
<button id="rentbtn">RENT A BIKE</button>
<div id="nxtbtn">
<i id="left" class="fa fa-angle-left"></i>
<i id="right" class="fa fa-angle-right"></i>
</div>
<div id="lines">
<div class="small"></div>
<div class="small"></div>
<div class="small"></div>
<div class="small"></div>
<div class="small"></div>
<div class="small"></div>
</div>
<div id="footer">
<div id="first" class="inFoot">
<h5>HARLEY-DAVIDSON IRON 883<sup><small>TM</small></sup></h5>
<p>$9.25/Day - $17.95 total for 2 Days</p>
</div>
<div id="second" class="inFoot">
<div id="row1">
<small>One or 2 Helmets<br>
Extensively Quality Check<br>
24/7 Road Side Assistance<br>
Mobile Phone Holder</small>
</div>
<div id="row2">
<small>Full Tank of Petrol<br>
Free Delivery<br>
Unlimited Mileage<br>
First Aid Medical Kit</small>
</div>
</div>
<div id="third" class="inFoot">
<p>In the saddle, you breathe deeper, smile bigger,<br>
and your heart beats louder. Responsibilities<br>
blow off your back. A ride on a Harley-Davidson®<br>
motorcycle can make any weekend epic.</p>
</div>
</div>
</div>
</body>
</html>