-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.14 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>NewsAPI</title>
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> -->
</head>
<body>
<div id="language-and-country-selector-parent-div" class="jumbotron">
<!-- put the language and country selector form here -->
</div>
<div id='ticker-div'>
<!-- Placeholder for ticker -->
<h1 id='ticker-content'></h1>
</div>
<h2 class='container display-3'>Details will be here (when the title is clicked)</h2>
<div id="details-div">
<!-- Article details here -->
</div>
<h3>Key Information For The Batch Rendered on Page</h3>
<div id="main-article-div" class="row container">
<!-- Summary of the presented articles here -->
</div>
<br>
<button id="show-more-headlines-button">
Get me more headlines
</button>
<script src='js/index.js'></script>
</body>
</html>