-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 960 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Newsroom</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<div class="head">
<h1>The Newsroom</h1>
<select class="dropdown" name="news">
<option value="" disabled selected>Select category..</option>
<option value="business">Business</option>
<option value="entertainment">Entertainment</option>
<option value="general" selected>General</option>
<option value="health">Health</option>
<option value="sports">Sports</option>
<option value="science">Science</option>
<option value="Technology">Technology</option>
</select>
</div>
<div class="content"></div>
</body>
</html>