-
Notifications
You must be signed in to change notification settings - Fork 0
/
flex-form.html
35 lines (31 loc) · 1.02 KB
/
flex-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flex form</title>
<link rel="stylesheet" href="css/flex-form.css">
</head>
<body>
<div class="cover">
<form action="#" class="flex-form">
<input type="search" class="destination" placeholder="Destination, hotel, airport">
<label for="from">From</label>
<input type="date" id="from">
<label for="to">To</label>
<input type="date" id="to">
<select name="travelers">
<option value="1">1 Traveler</option>
<option value="2">2 Travelers</option>
<option value="3">3 Travelers</option>
<option value="4">4 Travelers</option>
</select>
<input type="submit" class="btn-primary" value="search">
</form>
</div>
<video autoplay muted loop class="puppiness">
<source src="cover/puppiness.webm" type="video/webm">
<source src="cover/puppiness.mp4" type="video/mp4">
<source src="cover/puppiness.ogg" type="video/ogg">
</video>
</body>
</html>