-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.12 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.12 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Geosearch</title>
<meta charset="UTF-8">
<meta name="author" content="Ganiyu Babatunde">
<meta name="description" content="A tool that allows users to search for a place, view position on map with map marker and check local weather conditions.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<!------center text begin-->
<div class="pimg1">
<div class="ptext">
<span class="border">
<h1>Geosearch</h1>
A tool that allows users to search for a place, view position on map with map marker and check local weather conditions
</span>
</div>
</div>
<!------center text ends-->
<!------form begins-->
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="lets go on a Tour?">
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</div>
</div>
<!------form ends-->
<script src="scripts.js"></script>
</body>
</html>