-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (142 loc) · 5.47 KB
/
index.html
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Urus For Rent</title>
<link rel="icon" type="image/svg" href="/images/logo.svg"/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="header">
<div class="container">
<div class="header__top">
<a class="logo__link" href="#"">
<img class="logo__img" src="images/logo.svg" alt="logo">
</a>
<div class="menu">
<button class="menu__btn">
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
<div class="header__content">
<h1 class="title">URUS</h1>
<img class="header__images" src="/images/urus.png" alt="urus">
<h2 class="subtitle">FOR RENT</h2>
</div>
</div>
</header>
<section class="info">
<div class="container">
<h2 class="info__title">Lamborghini Urus</h2>
<img class="info__img" src="/images/urus-side.png" alt="car">
<div class="info__content">
<dl class="info__list">
<div class="info__list-line">
<dt>Class:</dt>
<dd> SUV</dd>
</div>
<div class="info__list-line">
<dt>Engine power: </dt>
<dd> 650 hp</dd>
</div>
<div class="info__list-line">
<dt>Engine capacity:</dt>
<dd> 4.0 liter turbo</dd>
</div>
<div class="info__list-line">
<dt>Acceleration 0-100: </dt>
<dd> 3.6 seconds</dd>
</div>
<div class="info__list-line">
<dt>Drive: </dt>
<dd> full</dd>
</div>
<div class="info__list-line">
<dt>Number of seats: </dt>
<dd> 5</dd>
</div>
<div class="info__list-line">
<dt>Minimum rental period: </dt>
<dd> 1 day</dd>
</div>
</dl>
<div class="order__box">
<p class="price">750 $ / day</p>
<button class="order">BOOK NOW</button>
</div>
</div>
<div class="info__gallery">
<img class="info__gallery-img" src="/images/gallery-1.jpg" alt="rear view">
<img class="info__gallery-img" src="/images/gallery-2.jpg" alt="lights">
<img class="info__gallery-img" src="images/gallery-3.jpg" alt="fueling">
</div>
</div>
</section>
<div class="color">
<h2 class="color__title">chose color</h2>
<div class="color__gallery">
<img class="color__img" src="/images/color-img.jpg" alt="cars">
<div class="color__selection">
<div class="color__item">
<img class="color__image" src="/images/orange.jpg" alt="" >
<p class="color__text">orange</p>
</div>
<div class="color__item">
<img class="color__image" src="/images/yellow.jpg" alt="" >
<p class="color__text">yellow</p>
</div>
<div class="color__item">
<img class="color__image" src="/images/white.jpg" alt="" >
<p class="color__text">white</p>
</div>
<div class="color__item">
<img class="color__image" src="/images/black.jpg" alt="" >
<p class="color__text">black</p>
</div>
</div>
<img src="/images/salon.jpg" alt="" class="color__salon">
</div>
</div>
<section class="contacts">
<div class="container">
<h2 class="contacts__title">Book Lamborghini Urus</h2>
<div class="contacts__box">
<div class="contacts__info">
<p class="contacts__info-text">
Mandatory insurance premium: $2000</p>
<p class="contacts__info-text">
personal driver: on request</p>
<p class="contacts__info-subtext">
We will contact you within an hour to clarify details or book a car by number:</p>
<a class="contacts__phone" href="tel:6054603933">+1 (605) 460-3933</a>
<p class="contacts__confirm">By clicking the “Confirm booking” button you agree to the terms and conditions</p>
</div>
<form class="contacts__form form">
<input type="text" class="form__input" placeholder="name">
<input type="number" class="form__input" placeholder="phone">
<input type="text" class="form__input" placeholder="city">
<p class="price contacts-price">750 $ / day</p>
<button class="order contacts-order" type="submit">BOOK NOW</button>
</form>
</div>
</div>
</section>
<footer class="footer">
<a href="#">
Privacy Policy</a>
</footer>
<script src="js/main.js"></script>
</body>
</html>