forked from ArianaHernandez/where-its-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.6 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
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://glitch.com/favicon.ico" />
<title>Where It's At</title>
<!-- Meta tags for SEO and social sharing -->
<link rel="canonical" href="https://glitch-hello-website.glitch.me/" />
<meta
name="description"
content=" A Site in which art resources are located"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&family=Sedgwick+Ave+Display&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Your Javascript Linked Below-->
<script src="/script.js"></script>
</head>
<body>
<div class="wrapper">
<div class="content" role="main">
<h1 class="title">Where It's At!</h1>
<img
src="https://cdn.glitch.me/485020f6-3b0f-4371-8673-18db0c84ff47%2Fmap%20(1).png?v=1634430242235"
class="illustration"
alt="Editor illustration"
title="Click the image!"
/>
<p id="locatorText">
Type in your location:
</p>
<div id="locator">
<input id="userBorough" />
<button id="submit">
Submit
</button>
</div>
</div>
</div>
</body>
</html>