-
Notifications
You must be signed in to change notification settings - Fork 0
/
tripwagon.html
88 lines (67 loc) · 2.88 KB
/
tripwagon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<link rel="stylesheet" href="CSS/style.css">
<title>Tripawagon</title>
</head>
<body>
<div class="container mt-5">
<section class="row searchbar pt-1">
<div class="col-12">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text bg-white">
<i class="fas fa-search text-black-50"></i>
</span>
</div>
<input list="cities-list" class="form-control border-0" id="cities" name="cities" aria-label="Location"/>
<datalist id="cities-list">
<option value="Toulouse"></option>
<option value="Paris"></option>
<option value="Marseille"></option>
</datalist>
<div class="input-group-append">
<button class="input-group-text bg-info text-white px-5 border-0">Search</button>
</div>
</div>
</section>
</div>
<!--BOOKING-->
<section class="row booking border">
<div class="col border" id="checkin">Check-in</div>
<div class="col border" id="checkout">Check-out</div>
<div class="col border">Room Types</div>
</section>
<!-- FEATURES -->
<section class="row features border">
<div class="col-4">Price Range</div>
<div class="col-2 border">Prop Type</div>
<div class="col-2 border">Guest</div>
<div class="col-4 border">Location</div>
</section>
<!-- MAP -->
<section class="row map">
<div class="col border">MAP</div>
<div class="col border">LOCATION SEARCH</div>
</section>
<!-- HOTELS -->
<section class="row hotels border">
<div class="col-12 row hotel border m-0 p-0"></div>
<div class="col-3 border">PHOTO</div>
<div class="col-4 border">DESC</div>
<div class="col-2 border">DEALS</div>
<div class="col-3 border">VIEW DEALS</div>
</section>
</div>
<script src="js/app.js"></script>
</body>
</html>