console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<header></header>
<main>
<article></article>
<nav></nav>
<aside></aside>
</main>
<footer></footer>
</body>
</html>
header {
position: relative;
width: 100%;
height: 100px;
border-radius: 20px;
background-color: gray;
}
main {
position: relative;
top: 10px;
width: 100%;
height: 500px;
border-radius: 20px;
}
nav{
position: absolute;
width: 90px;
height: 100%;
border-radius: 20px;
left: 0;
background-color: gray;
}
aside {
position: absolute;
width: 90px;
height: 100%;
border-radius: 20px;
right: 0;
background-color: gray;
}
article {
position: absolute;
left: 100px;
right: 100px;
height: 100%;
border-radius: 20px;
background-color: gray;
}
footer {
position: relative;
top: 20px;
width: 100%;
height: 100px;
border-radius: 20px;
background-color: gray;
}