forked from Lakshita018/Web-Vida-Sample-Domains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
149 lines (135 loc) · 3.29 KB
/
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
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News Today</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #333;
color: white;
padding: 15px;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
padding: 20px;
}
.featured,
.articles {
background: white;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.footer-container {
background: #222;
color: white;
text-align: center;
padding: 20px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer-section {
margin: 10px;
}
.footer-section a {
color: #ffcc00;
text-decoration: none;
}
.footer-bottom {
background: #111;
color: white;
text-align: center;
padding: 10px;
} .logo-container {
position: absolute;
top: 20px;
left: 20px;
}
.logo {
width: auto;
height: 80px;
border-radius: 8px;
transition: transform 0.3s;
}
</style>
</head>
<body>
<header>
<div class="logo-container">
<img src="ISTE-logo.png" alt="Logo" class="logo">
</div>
<h1>News Today</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">World</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Sports</a></li>
<li><a href="#">Entertainment</a></li>
</ul>
</nav>
</header>
<main>
<section class="featured">
<h2>Breaking News</h2>
<article>
<h3>Major Tech Breakthrough in 2025</h3>
<p>Scientists announce a revolutionary AI model that changes the tech industry...</p>
<a href="#">Read more</a>
</article>
</section>
<section class="articles">
<article>
<h3>World Politics Update</h3>
<p>New agreements signed between nations...</p>
<a href="#">Read more</a>
</article>
<article>
<h3>Sports Championship Highlights</h3>
<p>The latest results from the international tournament...</p>
<a href="#">Read more</a>
</article>
</section>
</main>
<footer>
<div class="footer-container">
<div class="footer-section">
<h3>About Us</h3>
<p>Your trusted source for the latest news updates.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<p><a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>Email: [email protected]</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 News Today. All rights reserved.</p>
</div>
</footer>
</body>
</html>