-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
38 lines (38 loc) · 1.04 KB
/
base.html
File metadata and controls
38 lines (38 loc) · 1.04 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
38
<!DOCTYPE html>
<html>
<head>
<title>Dog Spotter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="dog-icon.png" alt="Dog Spotter Logo">
<h1>Dog Spotter</h1>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="upload-form">
<form>
<h2>Upload a Picture of a Dog</h2>
<input type="file" id="dog-picture" accept="image/*">
<button type="submit">Submit</button>
</form>
</div>
<div id="map"></div>
</main>
<footer>
<p>© 2023 Dog Spotter. All rights reserved.</p>
</footer>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap" async defer></script>
<script src="index.js"></script>
</body>
</html>