Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<head>
<style>
div.container {
width: 300px;
border: 2px solid black;
}
div.box {
width: 150px;
border: 2px solid red;
float: left;
padding: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="box" id="box1">BOX1</div>
<div class="box" id="box2">BOX2</div>
<div style="clear:both;"></div>
</div>
</body>
</html>
The most helpful HTML solutions