-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 951 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 951 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js" defer></script>
</head>
<body>
<header>
<input class="search-bar" type="text" placeholder="🔍 Search for news">
<h1 class="page-heading">Top stories for you</h1>
<nav class="category">
<button type="button" class="all-news">All</button>
<button type="button" class="business-news">Business</button>
<button type="button" class="politics-news">Politics</button>
<button type="button" class="sports-news">Sports</button>
<button type="button" class="entertainment-news">Entertainment</button>
</nav>
</header>
<main>
<div class="play-card-container">
</div>
<button class="show-more-button" type="button">Show More</button>
</main>
<footer>
</footer>
</body>
</html>