I need some help achieving a specific layout for my website. Every time I try to do it, everything gets all jumbled up. I want it to look like the example image I have attached. Can anyone provide assistance?
body {
margin: 0px;
}
.top {
width: 100%;
background-color: blue;
height: 40px;
color: white;
}
.content {
margin-left: 100px;
height: 100%;
}
.sidebar {
width: 100px;
position: fixed;
height: 100%;
background-color: red;
}
.footer {
height: 40px;
width: 100%;
background-color: black;
}
<div class="sidebar"></div>
<div class="content">
<div class="top">My website example</div>
<p>I start here</p>
</div>
<div class="footer"></div>