-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (74 loc) · 3.28 KB
/
index.html
File metadata and controls
75 lines (74 loc) · 3.28 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
<html lang="es">
<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" />
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/main_components.css" />
<link rel="stylesheet" type="text/css" href="css/varaibles.css" />
<link rel="icon" href="img/icon.png" />
<title>Sweet Deals</title>
</head>
<body>
<header class="container bg-contrast-1 d-flex justify-content-between">
<div class="d-flex justify-content-center align-center col-gap-10">
<img src="img/icon.png" alt="App Icon" width="40px" />
<h1 class="text-title-1">Sweet Deals</h1>
</div>
<div class="d-flex align-center col-gap-10">
<button class="btn-primary text-content">Home</button>
<button class="btn-primary text-content">Deals</button>
<button class="btn-primary text-content">Log In</button>
</div>
</header>
<main class="container main-row">
<section class="left-col main-col text-content center-content">
­
</section>
<section class="main-col bg-primary-1 text-content center-content">
<div class="container d-flex justify-content-center">
<img src="img/bali1.jpg" alt="" width="80%" />
</div>
<div
class="row d-flex justify-content-center flex-dir-col align-center"
>
<h2 class="text-title-2 color-primary-1">Reservar - Viaje de Bali</h2>
<div class="container text-content color-primary-1">
Descubre por qué tantos viajeros ven Courtyard by Marriott Bali
Seminyak Resort como el hotel ideal cuando visitan Seminyak. Además
de aportar la combinación ideal de calidad, comodidad y ubicación,
ofrece un ambiente con encanto con una amplia variedad de servicios
diseñados para viajeros como tú.
</div>
<form class="container d-flex flex-dir-col row-gap-10 border-form m-bottom-10 color-primary-1" action="">
<p class="m-bottom-10">Formualry to reserve</p>
<p>Number of bags:</p>
<div>
<input type="radio" id="fnbag0" name="num_bags" value="0" required/>
<label for="fnbag0">0</label>
</div>
<div>
<input type="radio" id="fnbag1" name="num_bags" value="1" required />
<label for="fnbag1">1</label>
</div>
<div>
<label for="fdate">Reserve date:</label>
<input id="fdate" type="datetime-local" required />
</div>
<button class="btn-primary bg-contrast-2 " type="submit">Submit</button>
</form>
</div>
</section>
<section class="right-col main-col text-content center-content">
­
</section>
</main>
<footer class="container bg-contrast-2 text-content center-content">
<div class="container d-flex justify-content-center col-gap-10">
<div class="text-content"><a href="#"> About us</a></div>
<div class="text-content"><a href="#"> FAQ</a></div>
<div class="text-content"><a href="#"> Terms & Conditions</a></div>
</div>
</footer>
</body>
</html>