-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (114 loc) · 3.27 KB
/
index.html
File metadata and controls
118 lines (114 loc) · 3.27 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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="css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,latin-ext"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:700"
rel="stylesheet"
type="text/css"
/>
<title>Document</title>
</head>
<body>
<header>
<nav class="mainNavigation">
<div class="logo"><span class="redText">Mega</span>Rent</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Locations</a></li>
<li><a href="#">Catalog</a></li>
<li><a href="#">Terms of service</a></li>
</ul>
</nav>
<h1>Welcome to MegaRent</h1>
<h2>Your best online rent-a-car</h2>
</header>
<section class="catalog">
<h2>Cars from our catalog</h2>
<div class="column">
<img src="slike/car_civil.png" />
<h3>Civil vehicles</h3>
<a class="button" href="#">View offers</a>
</div>
<div class="column">
<img src="slike/car_sport.png" />
<h3>Sports car</h3>
<a class="button" href="#">View offers</a>
</div>
<div class="column">
<img src="slike/car_suv.png" />
<h3>SUV's</h3>
<a class="button" href="#">View offers</a>
</div>
<div class="column">
<img src="slike/car_van.png" />
<h3>Transport vehicles</h3>
<a class="button" href="#">View offers</a>
</div>
</section>
<section class="pricing">
<h2>Pricing</h2>
<a class="button pricingButton" href="">View pricing</a>
<table>
<thead>
<tr>
<th>Car type</th>
<th>Day</th>
<th>Week</th>
<th>Month</th>
</tr>
</thead>
<tbody>
<tr>
<td>Civil</td>
<td>20€</td>
<td>100€</td>
<td>350€</td>
</tr>
<tr>
<td>Transport</td>
<td>35€</td>
<td>150€</td>
<td>500€</td>
</tr>
<tr>
<td>Sport</td>
<td>50€</td>
<td>300€</td>
<td>900€</td>
</tr>
<tr>
<td>SUV</td>
<td>60€</td>
<td>450€</td>
<td>1000€</td>
</tr>
</tbody>
</table>
</section>
<footer>
<div class="logo"><span class="redText">Mega</span>Rent</div>
<div class="info">
North Road 16b <br />
East London <br />
United Kingdom <br />
</div>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2483.5979329453903!2d-0.11981304853612455!3d51.50224537953437!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487604c786e58ad3%3A0x109d99b6417b615f!2sEast%2C+Lambeth%2C+London+SE1%2C+UK!5e0!3m2!1sen!2srs!4v1459170512535"
frameborder="0"
width="400"
height="300"
style="border: 0"
allowfullscreen
></iframe>
</footer>
</body>
</html>