-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
41 lines (35 loc) · 1.16 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
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NewsLinker</title>
<link rel="shortcut icon" href="Assets/newslinker-logo.png" type="image/x-icon">
<link rel="stylesheet" href="Style.css">
<script src="Script.js" defer></script>
</head>
<body>
<div class="wrapper">
<nav>
<div class="container-nav">
<a href="#" class="site-logo">
<img src="Assets/newslinker-logo.png" alt="">
</a>
<ul class="topics">
<li class="topic-items ipl">IPL</li>
<li class="topic-items finance">Finance</li>
<li class="topic-items politics">Politics</li>
</ul>
<div class="search">
<input type="text" class="search-box" placeholder="Search News">
<button class="search-button">Search</button>
</div>
</div>
</nav>
<main>
<div class="container-main">
</div>
</main>
</div>
</body>
</html>