HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</head>
<body>
<div class="background">
<div class="d-flex flex-row justify-content-start container">
<h1 class="heading-1">Home</h1>
<h1 class="heading-2">Chats</h1>
<h1 class="heading-2">Freind requests</h1>
<h1 class="heading-2">Videos</h1>
<h1 class="heading-2">Groups</h1>
<h1 class="heading-2">Chats</h1>
<h1 class="heading-2">Shop</h1>
<img
src="https://image.shutterstock.com/image-vector/web-menu-icon-flat-design-600w-1805432458.jpg" class="d-flex flex-column justify-content-end menu-bar"
/>
</div>
<div class="bg-con d-flex flex-row justify-content-center">
<img
src="https://pnggrid.com/wp-content/uploads/2021/05/Facebook-logo-2021-1536x1536.png"
/>
</div>
<div class="meta-logo d-flex flex-row justify-content-center">
<img
src="https://img.freepik.com/premium-vector/meta-metaverse-logo-isolated-white-new-facebook-logo_75010-313.jpg?w=1380"
/>
</div>
</div>
</body>
</html>
CSS
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
.container{
background-color:#4267B2;
height:10vh;
font-family:"Roboto";
}
.heading-1{
padding:20px;
margin:5px;
font-size:20px;
color:#C0C0C0;
}
.heading-2{
padding:20px;
font-size:20px;
margin:5px;
color:#C0C0C0;
}
.bg-con{
background-size:5px;
height:50vh;
text-align:center;
margin:25px;
}
.menu-bar{
height:3vh;
margin:27px;
}
.meta-logo{
height:20vh;
margin:25px;
}
.background{
height:100vh;
background-size:cover;
background-color:#ffffff;
}