To structure your web page effectively, utilize the div tag to divide it into distinct sections and style these divisions using CSS. Here is a simple example for you:
In your HTML page, include the following div elements within the body tag:
<body>
<div id="leftContent">
</div>
<div id="mainContent">
</div>
<div id="rightContent">
</div>
</body>
Next, navigate to your CSS file (assuming you are familiar with linking CSS to HTML) and add the following styling rules:
#leftcontent
{
background-color: #ffffff;
float: left;
width: 200px;
height: 800px;
}
#mainContent
{
background-color: #ffffff;
width: 800px;
height: 800px;
}
#rightContent
{
background-color: #ffffff;
float: right;
width: 200px;
height: 800px;
}