-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="lib/animate.css">
<link rel="stylesheet" href="css/style.css">
<title>TravelTip</title>
</head>
<body>
<header>
<h1>TravelTip</h1>
<div class="search-bar">
<input class="search-input" type="text">
<button class="btn search-btn">🔍</button>
</div>
<button class="btn my-loc-btn">My Location</button>
</header>
<div class="weather"></div>
<div id="map" style="width: 100%; height: 400px;"></div>
<button class="btn add-marker-btn">Add Marker</button>
<div class="copy-loc-container">
<input class="copy-loc-input" type="text" readonly="readonly">
<button class="btn copy-loc-btn">Copy Location</button>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>