<html>
<head>
  <title>Div exmaple</title>
</head>
<body>

<style type="text/css"> 
.left {
  float: left;
  width: 120px;
  padding: 10px;
  border: 1px solid;
  text-align: center;
}

.right {
  float: right;
  width: 120px;
  padding: 10px;
  border: 1px solid;
  text-align: center;
}
</style>

<div class="left">
  1
</div>

<div class="right">
  2
</div>

<div class="left">
  3
</div>

</body>
</html>