HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web layout</title>
<link rel="stylesheet" href="./css/styles_page_layout.css">
</head>
<body>
<header>
<div class="logo_box">
<div class="logo">
<img src="./assets/metamask1.png" alt="Logo" style="width: 125px; height: 125px;">
</div></div>
<nav class="nav">
<ul class="menu_list">
<li class="menu_item"><a href="#">Home</a></li>
<li class="menu_item"><a href="#">About</a></li>
<li class="menu_item"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="content">
<article>
<h2>Article Heading</h2>
<section>
<p>Lorem <span>ipsum</span> dolor sit amet.</p>
</section>
</article>
</div>
<div class="adside">
<p>By the way... Here be banners and ads... </p>
</div>
</main>
<footer>
<p>
Copyright © 2022 This Guy
</p>
</footer>
</body>
</html>
CSS:
body {
display: flex;
flex-direction: column;
flex-wrap: wrap;
background-color: rgb(0, 0, 0);
}
a {
color:rgb(0, 0, 0)
}
header {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin-bottom: 20px;
background-color: rgb(29, 30, 31);
}
.logo_box {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-self: flex-start;
flex-basis: 40%;
/*background-color: rgb(241, 250, 118);*/
}
.logo {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 5px;
background-color: rgb(65, 218, 205);
}
.nav {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-end;
align-self: center;
flex-basis: 60%;
/*background-color: rgb(22, 0, 116);*/
}
.menu_list {
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-self: center;
list-style-type: none;
padding: 5px;
margin: 5px;
background-color: rgb(0, 0, 0);
}
.menu_item {
display: flex;
flex-wrap: wrap;
align-self: center;
margin-right: 10px;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
border: 0px;
font-size: 20px;
color: #000000;
background-color: rgb(65, 218, 205);
}
main {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
padding: 10px;
background-color: rgb(45, 59, 58);
}
.content {
display: flex;
flex-wrap: wrap;
flex-direction: row;
flex-basis: 70%;
padding: 10px;
margin: 5px;
color: rgb(255,255,255);
background-color: rgb(29, 30, 31);
}
.adside {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: flex-end;
flex-basis: 20%;
padding: 10px;
margin: 5px;
color: rgb(255,255,255);
background-color: rgb(0, 0, 0);
}
footer {
display: flex;
flex-wrap: wrap;
flex-direction: column;
margin-top: 20px;
padding: 20px;
color: rgb(65, 218, 205);
background-color: rgb(29, 30, 31);
}