forked from constructorlabs/responsive-news-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (50 loc) · 2.14 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
55
56
57
58
59
60
<!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>Update - News Reader</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class='hero'>
<h1 class='hero__title'>Upd<i class="fas fa-broadcast-tower"></i>te <span>Live<i class="far fa-window-minimize"></i></span></h1>
<p class='hero__date'>Saturday</p>
</header>
<nav class="category-nav">
<ul>
<li class="category category-general current">top stories</li>
<li class="category category-entertainment">entertainment</li>
<li class="category category-science">science</li>
<li class="category category-tech">technology</li>
<li class="category category-health">health</li>
<li class="category category-food">food</li>
<li class="category category-cycling">cycling</li>
</ul>
</nav>
<section class="search">
<form class="search--form">
<label for="search--query">Search</label>
<input type="text" name="search-query" id="search--query" placeholder="Type your search query...">
</form>
</section>
<section class='news'>
<aside class="popular">
<h2><em>Daily Mail</em><br /> Sidebar of Shame</h2>
</aside>
<nav class="page-nav">
<button class="prev">←</button>
<p class="page-num">Page <span class="page-current">1</span> of <span class="page-total"></span></p>
<button class="next">→</button>
</nav>
</section>
<footer class='legals'>
<p class='legals__copyright'>© 2018 Joe Lamb</p>
<p class='legals__credit'>Powered by <a href="https://newsapi.org/">NewsAPI.org</a></p>
</footer>
<script src="index.js"></script>
</body>
</html>