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

<style type="text/css"> 
.block {
  position: absolute;
  top: 50px;
  left: 200px;
  width: 120px;
  padding: 10px;
  border: 1px solid;  
  text-align: center;
}
</style>

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

</body>
</html>