-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (54 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Covid-19 News Feed</title>
<link rel="stylesheet" href="styles/normalize.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="styles/html5bp.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="styles/style.css" media="screen" charset="utf-8">
<script src="https://kit.fontawesome.com/1fc4d66995.js" crossorigin="anonymous"></script>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<section class="container">
<a class="feedr-logo">
<h1><i class="fas fa-viruses"></i> Covid-19 News Feed</h1>
</a>
<nav>
<ul>
<li><a href="#" alt="Select News Source">Select News Source <i class="fas fa-chevron-down"></i>
<span></span></span></a>
<ul>
<li id="guardian-button"><a href="#">The Guardian</a></li>
<li id="reddit-button"><a href="#">Several/Reddit</a></li>
<li id="nyt-button"><a href="#">The New York Times</a></li>
</ul>
</li>
</ul>
<section id="search">
<input type="text" name="search" value="" class="search-field" placeholder="Type a search term">
<a href="#"><img src="images/search.png" alt="Search by keyword" /></a>
</section>
</nav>
<div class="clearfix"></div>
</section>
</header>
<div id="popUp" class="loader hidden">
<a href="#" class="closePopUp">×</a>
<div class="container">
<h1>Article title here</h1>
<p>
Article description/content here.
</p>
<a href="#" class="popUpAction" target="_blank">Read more from source</a>
</div>
</div>
<section id="main" class="container">
</section>
<script src="js/keys.js"></script>
<script src="js/app.js"></script>
</body>
</html>