forked from gitsid1611/FirstPost-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto.html
120 lines (100 loc) · 4.06 KB
/
auto.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
<!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>Auto</title>
<link rel="stylesheet" href="./navbar.css">
<link rel="icon" type="image/x-icon" href="https://www.firstpost.com/static/images/favicon.ico?v=6.75">
<script src="https://kit.fontawesome.com/c7bc59b759.js" crossorigin="anonymous"></script>
</head>
<link rel="stylesheet" href="auto.css">
<body>
<div id="navbar">
</div>
<h1 class="politic_heading">AUTO NEWS</h1>
<hr class="politic_line"> <span class="politic_span">
<hr>
</span>
<div id="politic_main_div">
<div id="politic_cont"></div>
<div id="right_div">
<div id="politic_subscribe">
<h3>Subscribe to our foreign policy newsletter</h3>
<p>Sign up for a weekly curated briefing of the most important strategic affairs stories from across the
world.</p>
<p>Email Address</p>
<input type="text">
<br>
<button>Submit</button>
</div>
<h3 class="mostread">MOST READ</h3><span class="hr">
<hr>
</span>
<div class="right_content">
<h1 class="head">1</h1>
<h3>
India records 12,213 COVID cases in 24 hours, crosses 10K mark for first time since late
February
</h3>
<p>
The Ministry of Health and Family Welfare (MoHFW) informed that 11 people died of coronavirus in the
last 24 hours, increasing total casualties to 5,24,803</p>
</div>
<div class="right_content">
<h1 class="head">2</h1>
<h3>
Delhi: Overnight rains leave city water-logged, more thundershowers predicted for this evening
</h3>
<p>
The minimum temperature on Thursday was recorded at 23.8 degrees Celsius, four notches below the
season's average. The maximum temperature today is likely to be around 39 degrees Celsius</p>
</div>
<div class="right_content">
<h1 class="head">3</h1>
<h3>
Southwest monsoon likely to advance into Gangetic West Bengal by tomorrow
</h3>
<p>
IMD predicts thunderstorms in some areas of Kolkata on Thursday with day temperature likely to hover
around 33 degrees Celsius.</p>
</div>
<div class="right_content">
<h1 class="head">4</h1>
<h3>
Southwest monsoon likely to advance into Gangetic West Bengal by tomorrow
</h3>
<p>
IMD predicts thunderstorms in some areas of Kolkata on Thursday with day temperature likely to hover
around 33 degrees Celsius.</p>
</div>
<div class="right_content">
<h1 class="head">5</h1>
<h3>
Southwest monsoon likely to advance into Gangetic West Bengal by tomorrow
</h3>
<p>
IMD predicts thunderstorms in some areas of Kolkata on Thursday with day temperature likely to hover
around 33 degrees Celsius.</p>
</div>
</div>
</div>
<div id="footer">
</div>
</body>
</html>
<script src="auto.js"></script>
<script type="module">
import { navbar, footer } from './components/navbar.js'
document.getElementById('navbar').innerHTML = navbar();
document.getElementById('footer').innerHTML = footer();
</script>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "350px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>