-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (44 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Maps API Project</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<meta name="description" content="Interactive Google Maps with country-based search.">
<meta name="author" content="Ahmed Abdellatif">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="">
<div id="mapContainer"></div>
<div class="bst-sidebar flex-column left-div">
<div class="bst-filter">
<form action="" id="searchForm" class="flex-column">
<header>
<h1>Hotels</h1>
<h2>Find the right hotel for you</h2>
</header>
<!-- <input type="text" id="languages_input" placeholder="Select country">
<ul id="languages_list"></ul> -->
<fieldset>
<label for="selectCountry" class="form-label">Countries</label>
<select name="Reciters" id="selectCountry" class="form-select" aria-label="Default select example">
<option selected>Please select country</option>
</select>
</fieldset>
<button type="submit" id="submit" class="lis-primary-btn">Search</button>
</form>
</div>
</div>
</div>
<script src="js/script.js"></script>
<script async src="https://maps.googleapis.com/maps/api/js?callback=initMap" defer></script>
</body>
</html>