-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 2.99 KB
/
Copy pathindex.html
File metadata and controls
88 lines (83 loc) · 2.99 KB
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
<!DOCTYPE html>
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width-=device-width ,initial-scale = 1">
<style>
header{
text-align: center;
color:white;
padding:20px;
background-color: black;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode','Geneva', Verdana, sans-serif;
}
article{
float: left;
padding: 10px;
width: 100%;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: black;
background-color: white;
}
a {
float: left;
text-align: center;
color:white;
padding: 14px 18px;
background-color: grey;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode','Geneva', Verdana, sans-serif;
color: white;
}
a:hover{
background-color: black;
}
footer{
background-color: black;
padding: 10px;
text-align: left;
color: white;
}
section::after {
content: "";
display: table;
clear: both;
}
ul {
margin: 0;
padding: 0;
overflow: hidden;
background-color: grey;
}
@media (max-width: 600px) {
nav, article {
width: 100%;
height: auto;
}
}
</style>
</head>
<body>
<header> <h1>India has the Highest downpour: 2022</h1></header>
<nav>
<ul>
<a href="https://timesofindia.indiatimes.com/city/mumbai"> Mumbai </a>
<a href="https://timesofindia.indiatimes.com/city/chennai"> Chennai </a>
<a href="https://timesofindia.indiatimes.com/city/bangalore"> Bangalore </a>
<a href="https://timesofindia.indiatimes.com/city/agra"> Agra </a>
<a href="https://timesofindia.indiatimes.com/city/coimbatore"> Coimbatore </a>
</ul>
</nav>
<section>
<article>
<p>After <b> Jan 22, 1976 </b> <strong> India </strong> has the highest rainfall upto 30cm
With many research teams<i> Govt. Of India</i> has conducted an study on climatic changes occuring all around the world and ended up in shocking results </p>
<p>Delta districts will be washed out within this year end because of dislocations of the Tectonic plates.
So the emergency evacuation will be started by mid of 2022. </p>
<sub style="float: left;"> <b>Source: Times of India</b></sub>
</article>
</section>
<footer>
<p>To know more, Browse for Times Of India </p>
</footer>
</body>
</html>