-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (150 loc) · 5.42 KB
/
Copy pathindex.html
File metadata and controls
153 lines (150 loc) · 5.42 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
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
<!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" />
<title>Rarotonga | Private Drivers</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="icon"
href="./assets/icons/ExecutiveCar_Black_icon-icons.com_54904.png"
type="image/png"
/>
</head>
<body>
<div class="container">
<nav class="nav">
<div class="nav__wrapper">
<img
class="nav__img"
src="./assets/icons/ExecutiveCar_Black_icon-icons.com_54904.png"
alt="Simbol"
/>
<h1 class="nav__text"><span class="nav nav__text--red">Rarotonga |</span><span class="nav nav__text--black">|</span> Private Drivers</h1>
<div class="nav__bar">
<ul class="nav__list">
<li class="nav__item"><a class="nav__link" href="#Home">Home</a></liclass>
<li class="nav__item"><a class="nav__link" href="#Services-pricing">Services & pricing</a></li>
<li class="nav__item"><a class="nav__link" href="#Contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<main class="main">
<h2 id="Home">Hello! 👋 Where do you want to go?</h2>
<img src="./assets/img/VTC-1440x808.jpg" alt="Luxury car" />
<h3>Madrid</h3>
<p>
Madrid, capital of the Kingdom of Spain and most cosmopolitan city, is
one of the European destinations with the best tourist
infrastructures. In addition, it has an impressive cultural and
artistic heritage, along with an exciting legacy of centuries of
history.
</p>
<p>
In addition, this is <strong>Rarotonga headquarters</strong> from
where we will take you to all places of Madrid, Spain or (why not?)
<span>even Europe!</span>.
</p>
<p>
Our drivers will be the best guides of the city of Madrid and its
surroundings, we work every day in these marvelous streets and know
every corner.
</p>
<h3>Elsewhere 🇪🇺 🇪🇸</h3>
<p>
Of course, it is your vacations. Would you like to go further and
deeper in the Spain countryside, maybe go and know the most visited
places and worldwide famous (Alhambra, Segovia, Toledo, Barcelona,
Cordoba... so many!)? You only have to solicit
<strong>24h in advance</strong> and we will take you.
</p>
<p>
If you find exciting a travel around <strong>Europe</strong>, contact
with us and discuss the exact details of your dream trip.
</p>
<h2>Can you reach by car? Get in and let's go!</h2>
</main>
<div class="about" id="Services-pricing">
<h1>What services we offer?</h1>
<ul class="about__list">
<li class="service">
<h4 class="service__title">Airport or transport station</h4>
</li>
<li class="service">
<h4 class="service__title">Tour</h4>
</li>
<li class="service">
<h4 class="service__title">Long-distance travel</h4>
</li>
<li class="service">
<h4 class="service__title">Business</h4>
</li>
<li class="service">
<h4 class="service__title">VIP</h4>
</li>
</ul>
</div>
<div class="pricing">
<h1>Our pricing (€)</h1>
<div class="pricing__copy">
<p>Please, remember you must pay in advance for the service.</p>
<p>
Any question about collections or if you need a customized plan,
<a href="mailto:rarotonga@rarotonga.com" target="_blank"
>send us an email</a
>
✉️.
</p>
<p><strong>Our payment methods:</strong></p>
</div>
<div class="pricing__list">
<img
src="./assets/icons/1019607.png"
alt="Cash"
class="pricing__item"
/>
<p class="pricing__description">Cash</p>
<img
src="./assets/icons/tarjeta-de-debito.svg"
alt="Card"
class="pricing__item"
/>
<p class="pricing__description">Card</p>
<img
src="./assets/icons/paypal.svg"
alt="Paypal"
class="pricing__item"
/>
<p class="pricing__description">Paypal</p>
<img
src="./assets/icons/logotipo-bizum.png"
alt="Bizum"
class="pricing__item"
/>
<p class="pricing__description">Bizum</p>
</div>
</div>
<div class="contact" id="Contact">
<h1>How to contact us?</h1>
<ul class="contact__list">
<h3>Phone (+34)</h3>
<p>666 666 666</p>
<h3>Mail</h3>
<a href="mailto:rarotonga@rarotonga.com" target="_blank"
>rarotonga@rarotonga.com</a
>
<h3>Address</h3>
<p>4 Plaza de las plazas St. Madrid, PC 28029, Spain</p>
</ul>
</div>
<div class="footer">
<p class="footer__copy">
© Copyright 2021 - by
<a class="footer__link" href="https://github.com/PabloRDev" target="_blank">PabloRDev</a>
</p>
</div>
</div>
</body>
</html>