-
Notifications
You must be signed in to change notification settings - Fork 32
/
world_news.html
139 lines (115 loc) · 4.32 KB
/
world_news.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>News.com | Get every news on your fingertips</title>
<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=Merriweather:wght@300;400;700;900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/f390425e8d.js" crossorigin="anonymous"></script>
<!-- <link rel="stylesheet" href="style.css"> -->
<link rel="stylesheet" href="./world_news_style.css">
</head>
<body class="body">
<div class="toggler-button" onclick="toggle()">
<i class="fa-solid fa-moon dark"></i>
<i class="fa-solid fa-sun light"></i>
</div>
<div class="navbar darker">
<!-- <div class="logo">NEWS.com</div> -->
<img class="logo" src="./Assets/logo.png" alt="logo">
<!-- <input type="checkbox" id="checkbox_toggle" />
<label for="checkbox_toggle" class="hamburger">☰</label> -->
<div class="menu text">
<a href="#">Home</a>
<a href="#">Latest News</a>
<a href="#">Top News</a>
<a href="world_news.html">World</a>
<a href="#">Contact Us</a>
</div>
</div>
<div class="news-section1">
<div class="news-heading1">
<h1 class="pt-24 Top-Heading text-4xl sm:text-xl" style="color: #F58821; display:flex; justify-content:center; padding-top: 20px; padding-bottom: 20px;">
World News
</h1>
</div>
</div>
<div id="world_news" style="padding-top: 30px;"></div>
<div class="footer">
<ul class="list1">
<span id="b" class="hovereffect"> <strong>ABOUT</strong> </span
><br />
<li><a href="#" class="hovereffect">About us</a></li>
<li><a href="#" class="hovereffect">Contact us</a></li>
<li><a href="#" class="hovereffect">Privacy Policy</a></li>
<li><a href="#" class="hovereffect">Quick links</a></li>
</ul>
<ul class="list2">
<span id="c" class="hovereffect"><strong>NEWS LINKS</strong></span>
<br />
<li><a href="#" class="hovereffect">Latest News</a></li>
<li><a href="#" class="hovereffect">Live TV</a></li>
<li><a href="#" class="hovereffect">Bollywood News</a></li>
<li><a href="#" class="hovereffect">Politics</a></li>
</ul>
<ul class="list3">
<span id="a" class="hovereffect"><strong>SUPPORT</strong></span
><br />
<li><a href="#" class="hovereffect">FAQ's</a></li>
<li><a href="#" class="hovereffect">Feedback</a></li>
<li><a href="#" class="hovereffect">Help</a></li>
</ul>
</div>
<!-- footer icon -->
<div class="icon-container">
<div class="button">
<div class="icon">
<i class=" social fab fa-facebook-f"></i>
</div>
<span>
Facebook
</span>
</div>
<div class="button">
<div class="icon">
<i class="social fab fa-instagram"></i>
</div>
<span>
Instagram
</span>
</div>
<div class="button">
<div class="icon">
<i class=" social fab fa-github"></i>
</div>
<span>
Github
</span>
</div>
<div class="button">
<div class="icon">
<i class="social fab fa-youtube"></i>
</div>
<span>
YouTube
</span>
</div>
<div class="button">
<div class="icon">
<i class=" social fab fa-linkedin"></i>
</div>
<span>
Linkedin
</span>
</div>
</div>
<div class="footer-content">
<p>© 2022 Copyright News. All Rights Reserved.</p>
</div>
</div>
<script src="script1.js"></script>
</body>
</html>