HTML Layout
HTML Layout
On this page
HTML Layout Elements
HTML Layout
Title
Home
This is a home page.
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Layout</title>
<style>
* {
box-sizing: border-box;
}
/* Style the header */
.header1 {
background-color: YellowGreen;
padding: 10px;
text-align: center;
font-size: 20px;
color: white;
}
.section::after {
content: "";
display: table;
clear: both;
}
.nav {
float: left;
width: 20%;
height: 400px;
background: Gold;
padding: 20px;
}
.nav .ul {
list-style-type: none;
padding: 0;
}
.article {
float: left;
padding: 20px;
width: 80%;
background-color: Violet;
height: 400px;
}
/* Style the footer */
.footer {
background-color: YellowGreen;
padding: 10px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<h2>HTML Layout</h2>
<header class="header1">
<h1>Title</h1>
</header>
<section class="section">
<nav class="nav">
<ul class="ul">
<li><a href="#">Home</a></li>
<li><a href="#">Learn HTML</a></li>
<li><a href="#">About Us</a></li>
</ul>
</nav>
<article class="article">
<h3>Home</h3>
<p>This is a home page.</p>
</article>
</section>
<footer class="footer">
<p>Footer</p>
</footer>
</body>
</html>