-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 1.7 KB
/
index.html
File metadata and controls
55 lines (49 loc) · 1.7 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>News Balance</title>
<link href="https://fonts.googleapis.com/css?family=Lalezar|Covered+By+Your+Grace|Gloria+Hallelujah|Patua+One|Roboto|Merriweather+Sans" rel="stylesheet">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href=main.css>
</head>
<body>
<!-- Header -->
<ul>
<li><a href="#" id="title">News Balance - headlines from the spectrum of politics</a></li>
<li><a href="https://astroash.github.io/" id="refresh"><i class="fa fa-refresh" aria-hidden="true"></i></a></li>
</ul>
<!-- info -->
<!-- <h3>Todays news from the spectrum of politics</h3> -->
<!-- News Columns -->
<div class="clearfix">
<div class="column1">
<div class="column" id="leftArt">
<h2>Left News</h2>
<h3 id="leftPaper"></h3>
</div>
<div class="column" id="cenLeftArt">
<h2>Center Left News</h2>
<h3 id="cenLeftPaper"></h3>
</div>
</div>
<div class="column2">
<div class="column" id="cenRightArt">
<h2>Center Right News</h2>
<h3 id="cenRightPaper"></h3>
</div>
<div class="column" id="rightArt">
<h2>Right News</h2>
<h3 id="rightPaper"></h3>
</div>
</div>
</div>
<!-- js jQuery-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script type='text/javascript' src='config.js'></script>
<script src="main.js"></script>
<footer>
<p>API kindly created by <a href="https://newsapi.org">https://newsapi.org</a></p>
</footer>
</body>
</html>