-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (40 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="build/css/style.min.css">
<title>Instanews</title>
</head>
<body>
<header>
<div class="drop_selector">
<h1>Choose a section</h1>
<form>
<select class="selection_bar">
<option>Section...</option>
<option value="home">Home</option>
<option value="arts">Arts</option>
<option value="business">Business</option>
<option value="sports">Sports</option>
<option value="technology">Technology</option>
<option value="fashion">Fashion</option>
</select>
</form>
</div>
<div class="logocontainer">
<div>
<img src="images/nyt-logo.svg" alt="New York Times Logo">
</div>
</div>
</header>
<section class="newsgrid">
</section>
<footer class="footercontainer">
<p>© Copyright 2016 INSTANEWS</p>
</footer>
<script src="./lib/jquery-3.2.1.js"></script>
<script src="build/js/index.min.js"></script>
</body>
</html>