Basic Web Page Layout HTML Code in HTML
<!DOCTYPE html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>
Full Responsive Page Layout HTML Code in HTML
<!DOCTYPE html>
<head>
<title>Title of the document</title>
</head>
<body>
<header>Header section of the document</header>
<section>
<aside>Side bar of the document</aside>
<article>Article description</article>
</section>
<footer>Footer of the document</footer>
</body>
</html>