-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.79 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="stylesheet" href="css/style.css"/>
<link rel="shortcut icon" href="imgs/favicon.png"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,500" rel="stylesheet">
<title>spots.</title>
<script src="https://use.fontawesome.com/7d84edbcfa.js"></script>
</head>
<body>
<header>
<nav>
<h1>spots.</h1>
</nav>
</header>
<main>
<div class="wrapper">
<section class="map-view">
<input class="map-view__search-box" type="text" placeholder="">
<div class="map-container"></div>
</section>
<section class="ig-feed">
<div class="options-bar">
<form action="" class="hashtag-search">
<input type="search" class="hashtag-search__field" name="" placeholder="Filter by a Hashtag">
<button type="submit" class="hashtag-search__submit" value="GO"><i class="fa fa-search" aria-hidden="true"></i></button>
</form>
<div class="hashtag-search__curr"><span>N/A</span></div>
<button class="filters-toggle"><i class="fa fa-chevron-down" aria-hidden="true"></i><span>Location Filters</span></button>
</div>
<ul class="filters">
</ul>
<div class="ig-feed__gallery">
<div class="no-content"><span>No Content :(</span></div>
<div class="copyright">
<span>Copyright © Dean Wu 2017</span>
</div>
</div>
</section>
</div>
</main>
<footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCqJcWODf8O1xW6F22voppWat2wRGcAJKM&libraries=places"></script>
<script src="js/script.js"></script>
</footer>
</body>
</html>