-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (40 loc) · 2.31 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">
<title>Horn of Africa New Search</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link href="index.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<body class="animated fadeIn">
</head>
<body>
<main role="main" class="js-output">
<h1><a href="index.html">Horn of Africa News Search</a></h1>
<p class="info">The lastest news this week about each country in the Horn of Africa. Pick a country to begin!</p>
<div class="nations-container">
<div id="djibouti" class="start animated fadeInUp" role="button">Djibouti</div>
<div id="eritrea" class="start animated fadeInUp" role="button">Eritrea</div>
<div id="ethiopia" class="start animated fadeInUp" role="button">Ethiopia</div>
<div id="kenya" class="start animated fadeInUp" role="button">Kenya</div>
<div id="somalia" class="start animated fadeInUp" role="button">Somalia</div>
<div id="south-sudan" class="start animated fadeInUp" role="button">South Sudan</div>
<div id="sudan" class="start animated fadeInUp" role="button">Sudan</div>
<div id="uganda" class="start animated fadeInUp" role="button">Uganda</div>
</div>
<div class="result-info" aria-live="polite" hidden><span class="home"></span><span></span></div>
<div class="js-search-results" aria-live="assertive"></div>
<div class="page" aria-live="polite">
<a href="#" class="previous round" role="button" hidden><<<</a>
<a href="#" class="next round" role="button" hidden>>>></a>
</div>
</main>
<script src="index.js"></script>
</body>
</html>