-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FlexBox Nav</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<video autoplay loop muted>
<source src="media/video.mp4" type="video/mp4">
</video>
<div class="cover">
<h1>Encuentra tu próximo <span>destino</span> ✈</h1>
<form class="flex-form">
<label for="search">
<input type="search" id="search" placeholder="¿A dónde quieres ir?" required />
</label>
<label for="from">
<span>Salida</span>
<input type="date" id="from" name="from" required />
</label>
<label for="until">
<span>Regreso</span>
<input type="date" id="until" name="until" required />
</label>
<label for="list">
<span>Viajeros</span>
<select id="list" name="list" required />
<option>1 persona</option>
<option>2 persona</option>
<option>3 personas</option>
<option>4 personas</option>
<option>5 personas</option>
<option>Más de 5 personas</option>
</select>
</label>
<button type="submit">Buscar</button>
</form>
</div>
</body>
</html>