-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 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
51
52
53
54
<!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">
<title>Gulp SCSS ES6 Starter</title>
<!-- My Style, note you can use style.min.css for Production -->
<link rel="stylesheet" href="./build/css/style.css">
<!-- jQuery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Selectric -->
<script async src="./lcdsantos-jQuery-Selectric-0b92c26/src/jquery.selectric.js"></script>
<!-- My Script -->
<script src="./build/js/script.min.js"></script>
<!-- Selectric stylesheet -->
<link rel="stylesheet" href="./scss/selectric.css">
</head>
<body>
<header>
<div class="logoContainer">
<a href="./index.html"><img src='./Images/assets/nyt-logo.svg' alt='NewYorkTimesLogo'></a>
</div>
<div class='sections'>
<h3>Choose A Selection</h3>
<select id="select-section" class="selectric">
<option value="sections">Sections...</option>
<option value='politics'>Politics</option>
<option value='sports'>Sports</option>
<option value='arts'>Arts</option>
<option value='science'>Science</option>
<option Value='fashion'>Fashion</option>
<option Value='movies'>Movies</option>
<option Value='books'>Books</option>
</select>
</div>
</header>
<section class="newslist">
<div class="load"></div>
<ul class="list">
</ul>
</section>
<footer>
<h4>©Copyright 2019 INSTANEWS</h4>
</footer>
</body>
</html>