-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
227 lines (215 loc) · 9.66 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="OpenCrew">
<meta name="description" content="eRentCar Landing Page">
<meta name="keywords" content="eRentCar, Landing Page, UPC, startup, car, rent, safe">
<link rel="stylesheet" href="styles.css">
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>eRentCar</title>
</head>
<body>
<header>
<div id="navbar-container">
<a href="" id="brand">
<img id="logo" src="images/logo.png" alt="logo of eRentCar">
</a>
<div id="toggle-button">
<span id="hamburguer">☰</span>
</div>
<nav id="menu" class="">
<ul>
<li>
<a class="a-navbar" href="#benefits">Benefits</a>
</li>
<li>
<a class="a-navbar" href="#services">Services</a>
</li>
<li>
<a class="a-navbar" href="#rates">Rates</a>
</li>
<li>
<a class="a-navbar" href="#rent">Rent</a>
</li>
<li>
<a class="a-navbar" href="#us">About Us</a>
</li>
<li>
<a class="a-navbar" href="https://erentcar-d95d1.web.app/login" >
<input type="button" value="Login" id="navbar-button-login">
</a>
</li>
<li>
<a class="a-navbar" href="https://erentcar-d95d1.web.app/login" >
<input type="button" value="Register" id="navbar-button-register">
</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<h1 id="title"> This year travel all over Peru </h1>
<img src="images/CARRO HERO.png" alt="car" id="image" style="height:600px; width:900px;">
<div id="text">
<p>Security for you an your <span>family</span></p>
<a href="https://erentcar-d95d1.web.app/login" >
<input type="button" value="See more">
</a>
</div>
</section>
<section id="about-the-product-section" class="d-flex">
<h3 id="about-the-product-title" class="title-section" class="mx-auto">About the Product</h3>
<div id="about-the-product">
<iframe width="560" height="315" src="https://youtube.com/embed/BaA0mRPDo2o" title="About the Product" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<section id="benefits" class="benefits">
<div class="inner-benefit">
<h3 class="title-section">Benefits</h3>
<div class="row-benefit">
<div class="col-benefit">
<div class="benefit">
<img src="images/benefit_img_1.svg" alt="">
<p>You will be able to see the cars closer to you and receive it at your home</p>
</div>
</div>
<div class="col-benefit">
<div class="benefit">
<img src="images/benefit_img_2.svg" alt="">
<p>You will be insured, from the first moment you start driving</p>
</div>
</div>
<div class="col-benefit">
<div class="benefit">
<img src="images/benefit_img_3.svg" alt="">
<p>Without so much paperwork, cars at any time in just a few clicks</p>
</div>
</div>
</div>
</div>
</section>
<section id="services" class="services">
<div class="inner-service">
<h3 class="title-section">Services</h3>
<div class="row-service">
<div class="col-service">
<div class="service">
<img src="images/services_img_1.svg" alt="">
<p>You can request the complete cleaning and disinfection service before receiving the car.</p>
</div>
</div>
<div class="col-service">
<div class="service">
<p>For your convenience, you can request the delivery service and I pick up at home.</p>
<img src="images/services_img_2.svg" alt="">
</div>
</div>
</div>
<div class="row-service">
<div class="col-service">
<div class="service">
<img src="images/services_img_3.svg" alt="">
<p>You will be able to obtain profits from the comfort of your home, if you publish your car in our platforms</p>
</div>
</div>
<div class="col-service">
<div class="service">
<p>You can access statistics of your car and its rental, if you subscribe to our premium version</p>
<img src="images/services_img_4.svg" alt="">
</div>
</div>
</div>
</div>
</section>
<section id="rates" class="plans">
<h1>Plans</h1>
<div class="row">
<div class="plans-col">
<h3>BASIC</h3>
<ul>
<li>1 Car</li>
<li>Statistics</li>
</ul>
<a class="btn" href="https://erentcar-d95d1.web.app/login" >GET BASIC PLAN</a>
</div>
<div class="plans-col">
<h3>REGULAR</h3>
<ul>
<li>3 Cars</li>
<li>Statistics</li>
</ul>
<a class="btn" href="https://erentcar-d95d1.web.app/login" >GET REGULAR PLAN</a>
</div>
<div class="plans-col">
<h3>PRO</h3>
<ul>
<li>3 Cars</li>
<li>Statistics</li>
<li>Assistance 24h</li>
</ul>
<a class="btn" href="https://erentcar-d95d1.web.app/login" >GET PRO PLAN</a>
</div>
</div>
</section>
<section id="rent">
<h1>Rent a car</h1>
<p>Start driving the road by clicking in</p>
<a href="https://erentcar-d95d1.web.app/login" >RENT</a>
</section>
<section id="us">
<h1>About Us</h1>
<div class="content-us">
<img src="images/us_img.svg" alt="">
<p>eRentCart is a car rental service, where people who want to rent can post ads and that, in this way, other people who want to rent them can contact them</p>
</div>
</section>
<section id="about-the-team-section" class="d-flex">
<h3 id="about-the-team-title" class="title-section" class="mx-auto">About the Team</h3>
<div id="about-the-team">
<iframe width="560" height="315" src="https://youtube.com/embed/phsef2uP29s" title="About the Team" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<footer id="footer">
<section class="footer-design1">
<div class="footer-design1-row">
<div class="footer-design1-col">
<h1>eRentCar</h1>
<li></li>
<a href="https://twitter.com/?lang=es"><span class="icon icon-twitter"></span></a>
<a href="https://www.facebook.com/"><span class="icon icon-facebook"></span></a>
<a href="https://www.instagram.com/?hl=es"><span class="icon icon-instagram"></span></a>
<a href="https://web.whatsapp.com/"><span class="icon icon-whatsapp"></span></a>
<a href="https://github.com/"><span class="icon icon-github"></span></a>
<a href="https://www.youtube.com/"><span class="icon icon-youtube"></span></a>
</div>
<div class="footer-design1-col">
<h1>Enterprice</h1>
<ul>
<li><a href="">Contact wit us</a></li>
<li><a href="">Terms and conditions</a></li>
<li><a href="">Policies y privacy</a></li>
</ul>
</div>
<div class="footer-design1-col">
<h1>Contact</h1>
<ul>
<li><a href="">01-393-989-1</a></li>
<li><a href="">923-998-344</a></li>
<li><a href="">980-614-589</a></li>
</ul>
</div>
</div>
</section>
<section class="footer-design2">
<h1>© 2021 All rights reserved eRentCar</h1>
</section>
</footer>
<script src="main.js"></script>
</body>
</html>