-
Notifications
You must be signed in to change notification settings - Fork 3
/
trend.html
71 lines (66 loc) · 1.9 KB
/
trend.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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>
Get Latest News, India News, Breaking News, Today's News - NDTV.com
</title>
<link
rel="shortcut icon"
href="https://www.ndtv.com/images/icons/ndtv.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="./styles/trend.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.sandbox.google.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link rel="stylesheet" href="./styles/navbar.css" />
</head>
<body>
<div id="navbar"></div>
<main id="container">
<h1>Trending</h1>
<div id="most">
<p>Trending</p>
<p>Most Read</p>
<p>Most Watched</p>
<p>Most Commented</p>
</div>
<div id="trend_nav">
<p>All</p>
<p>News</p>
<p>Movies</p>
<p>Sports</p>
<p>Business</p>
<p>Gadgets</p>
<p>Auto</p>
<p>Food</p>
<p>Khabar</p>
</div>
<div id="show_article"></div>
</main>
<div id="footer"></div>
</body>
</html>
<script type="module" src="./scripts/trend.js"></script>