-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (102 loc) · 5.17 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
<!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="descripcion=" content="This is a HTML code for a website of a company called RBK CO-HOST HOUSE that offers temporary rentals in Buenos Aires and Gran Buenos Aires. The website has a header, a main section with an image and some text, a section with testimonials from customers and a footer. The website uses Bootstrap and Font Awesome libraries, and has a style sheet and a Google font. ">
<meta name="keywords" content="HTML code, RBK CO-HOST HOUSE, temporary rentals, Buenos Aires, Gran Buenos Aires, header, main section, image, text, testimonials, customers, footer, Bootstrap, Font Awesome, style sheet, Google font.">
<!-- ANIMATE CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- BOOTSTRAP -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- STYLE SHEET CSS -->
<link rel="stylesheet" href="./styles/css/style.css">
<!-- FONT AWESOME -->
<script src="https://kit.fontawesome.com/511f428960.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- FONT GOOGLE -->
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap" rel="stylesheet">
<title>RBK CO-HOST HOUSE</title>
</head>
<body class="body">
<header class="header">
<div class="logo">
<img src="./img/rbkcohosthouselogo.png" width="250px" height="150" alt="Logo empresa RBK CO-HOST HOUSE" class="imglogo">
</div>
<!-- LOGO PAGINA WEB -->
<nav class="header-navbar"> <!-- Menu/Barra de Navegacion -->
<ul>
<li>
<a href="#" class="active" class="transition">Inicio</a>
</li>
<li>
<a href="./pages/about.html" class="link">Sobre</a>
</li>
<li>
<a href="./pages/services.html" class="link">Servicios</a>
</li>
<li>
<a href="./pages/accommodation.html" class="link">Alojamientos</a>
</li>
<li>
<a href="./pages/contact.html" class="link">Contacto</a>
</li>
</ul>
</nav>
<div >
<h1 class="animate__animated animate__pulse">
BIENVENIDOS A RBK CO-HOST HOUSE
</h1>
</div>
</header>
<main class="main">
<!-- <h1>
Bienvenidos a RBK CO-HOST HOUSE
</h1> -->
<div class="texto">
<P>
Alquileres temporarios en la Ciudad Autonoma de Buenos Aires y Gran Buenos Aires.
<br>
Nos dedicamos a hacerles la vida mas facil, una oportunidad para aumentar sus ingresos.
Dedicacion total al cliente y al huesped.
</P>
</div>
<div class="img">
<img src="./img/libertador.JPG" alt="Departamento av del libertador 7766" width="450" height="400">
</div>
</main>
<section class="depoimentos">
<p class="font">
Depoimentos de nuestros clientes
</p>
<div class="carrusel">
<div class="grande">
<ul class="puntos" >
<li class="punto">
<img src="./img/depoimentofernanda.png" alt="Depoimento Fernanda, Alojamiento de Av del Libertador 7766, Nuñez, Buenos Aires" width="400px" class="imge" >
</li>
<li class="punto">
<img src="./img/depoimentoalejandro.png" alt="Depoimento Alejandro, alojamiento de av del libertador 7766, nuñez, Buenos Aires" width="450.2" class="imge" >
</li>
<li class="punto">
<img src="./img/depoimentomercedes.png" alt="Depoimento Mercedes, alojamiento de av del libertador 7766, nuñez, Buenos Aires" width="430.5" class="imge" >
</li>
</ul>
</div>
</div>
</section>
<footer class="footer">
<p>
Copyright © - RBKOMPANY
<br> Avenida Juramento 2161
</p>
<div id="instagram">
<a href="https://instagram.com/rebecafrancohost" target="_blank" class="link"><i class="fa-brands fa-instagram"></i></a></div>
<div id="whatsapp">
<a href="https://wa.me/1153792773" target="_blank" class="link"><i class="fa-brands fa-square-whatsapp"></i></a>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</footer>
</body>
</html>