-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1">
<title>Instanews</title>
<link rel="stylesheet" type="text/css" href="./build/css/styles.css">
</head>
<body>
<div class="container1 container1--empty container1-desktop">
<div class="wrapper">
<img class="logo" src="./assets/images/nyt-logo.svg" alt="nyt-logo">
<form class="section-select">
<h1 class="section-choice">Choose a section:</h1>
<select class="myList">
</select>
</form>
<img class="loader" src="./assets/images/ajax-loader.gif" alt="loader">
</div>
</div>
<div class="fail">
<p>Fail to load... Try again</p>
</div>
<ul class="news-feed">
</ul>
<footer class="footer">
<h2 class="copyright"> ©Copyright 2016 INSTANEWS</h2>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="./build/js/jquery.nice-select.js"></script>
<script src="./build/js/index.min.js"></script>
</body>
</html>