-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>News Website With Api</title>
</head>
<body>
<div class="container">
<h1>News Aggregator</h1>
<div class="selectionContainer">
<label for="category">Choose Category:</label>
<select id="category">
<option value="business">Business</option>
<option value="entertainment">Entertainment</option>
<option value="general">General</option>
<option value="health">Health</option>
<option value="science">Science</option>
<option value="sports">Sports</option>
<option value="technology">Technology</option>
</select>
<button id="fetchCategory">Fetch News</button>
</div>
<div class="searchContainer">
<input type="text" id="searchKeyword" placeholder="Search For News...">
<button onclick="fetchNews(true)">Search Key</button>
</div>
<div id="newsContainer"></div>
</div>
<script src="script.js"></script>
</body>
</html>