-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask3-Search.html
30 lines (28 loc) · 1.22 KB
/
Task3-Search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style3.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'> <!--For the login icons-->
<script src="script.js"></script>
<title> Task 3.1 || Nominatim- Search </title>
</head>
<body>
</div>
<div class="container">
<div class="wrapper">
<label> What location do you want to search?</label>
<input id="tag" type="text">
<button id="open" type="button" class="btn btn-info" onclick="searchMap()">Search </button>
</div>
</div>
<!-- Creation of a pop up message-->
<div class="message">
<h2>Your search in JSON is: </h2>
<p id="result"><br></p>
<button type="button" id="close" class="btn btn-warning" onclick="closeModal()">Close</button> <!--bootstrap asset-->
</div>
</body>
</html>