write this on the writing side
Create a webpage as given layout use <nav> <header> <footer> <aside> <article> with CSS.
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
a{color: white;}
</style>
</head>
<body style="margin: 5px">
<article>
<header>
<h1>News</h1>
<p>Local and National News</h2>
</header>
</article>
<nav style="background-color: blue;padding: 5px;margin:
5px">
<a href="">Home</a> |
<a href="">Archives</a> |
<a href="">About</a> |
</nav>
<article style="background-color: grey;padding:
5px;margin: 5px;width: 60%;float:left;">
<h1>Local News</h1>
<p style="background-color: white;margin:
5px;padding: 5px"><b>Rajasthan govt will fall if Sachin
Pilot is at the helm, Ashok Gehlot tells Sonia</b><br>
Chief Minister Ashok Gehlot on Thursday told Congress
president Sonia Gandhi that the Rajasthan government will
fall if the leadership intends to replace him with his
bete noire Sachin Pilot in the run-up to the party
presidential election.
</p>
<p style="background-color: white;margin:
5px;padding: 5px"><b>Kharge vows 'big change' as he takes
on Tharoor for Congress president post</b><br>
Senior Congress leader and Leader of Opposition
in Rajya Sabha Mallikarjun Kharge filed his nomination
for the post of Congress president at the party office in
the national capital.</p>
</article>
<article style="margin: 5px;padding:
5px;background-color: grey;" >
<aside>
<h4>Be a news reporter</h4>
<p>Contact us Today at test@gmail.com</p>
</aside>
</article>
<article style="background-color: grey;padding:
5px;margin: 5px;width: 60%">
<h1>National News</h1>
<p style="background-color: white;margin:
5px;padding: 5px"><b>Xiaomi India case: FEMA authority
confirms ED's seizure order of ₹5,551.27 crore</b><br>The
competent authority appointed under the Foreign Exchange
Management Act (FEMA) has confirmed the seizure order of
₹5,551.27 crore issued by the Enforcement Directorate
(ED) against Xiaomi Technology India Private Limited on
April 29.</p>
<p style="background-color: white;margin:
5px;padding: 5px"><b>Congress presidential poll: No one
is a FAVOURITE, Gandhi family not endorsing any
candidate, says party</b><br>Congress presidential poll:
Congress Central Election Authority chairman Madhusudan
Mistry has made it clear that the Gandhi family has not
endorsed any candidate for the presidential polls. All
candidates are contesting on their own. The Gandhi family
has not endorsed anyone`s nomination, he added.<br></p>
</article>
<footer>
<p style="background-color: blue;color: white">Footer
Information</p>
</footer>
</body>
</html>