HTML Layout is a way in which we can arrange a web page in well-mannered and well-structured with responsive in all devices for looking better.
Example:-
<!DOCTYPE html>
<html>
<head>
<title>HTML Layout</title>
</head>
<body>
<header>
<div class="header">Coder Raj</div>
</header>
<div class="menu">
<a href="#home">HOME</a>
<a href="#about">About</a>
<div class="menu-log">
<a href="#login">Login</a>
</div>
</div>
<div class = "middle section">
<section id="Content">
<h3>Content section</h3>
</section>
</div>
<footer>Footer Section</footer>
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.