-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (39 loc) · 1.52 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 http-equiv="x-ua-compatible" content="ie=edge">
<title>Foursquare Sample App</title>
<meta name="description" content="Foursquare sample API">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preload" href="fonts/ks_bold.woff2" as="font" crossorigin>
<link rel="preload" href="fonts/roboto_regular.woff2" as="font" crossorigin>
<link rel="preload" href="style.css" as="style">
</head>
<body>
<link rel="stylesheet" href="style.css">
<header class="site-header">
<h1 class="site-header__title" title="Hehe, get it? :-)">
4<sup>2</sup> API demo
</h1>
</header>
<section class="foursquare-login js-login" hidden>
<a href="#" class="foursquare-login__button js-login-button">Log into Foursquare</a>
</section>
<main class="main-content js-main-content" hidden>
<div class="distance-filter">
<input min="500" max="5000" step="100" value="500"
type="range" class="distance-filter__selector js-max-range">
<p class="distance-filter__content">
Showing venues within
<span class="distance-filter__range js-max-range-indicator">500</span>
meters.
<br>
Move the slider to adjust.
</p>
</div>
<section class="google-map js-map"></section>
</mai>
<script src="app.js"></script>
</body>
</html>