Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

<html>

  <head>
    <style>
 
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
 
h1{
 
text-align: center;
 
}
 .flex-container {
display: flex;
background-color: DodgerBlue;
}
 
.flex-container .box {
background-color: #f1f1f1;
width: 33.33%;
margin: 80px;
padding: 30px;
text-align: center;
font-size: 16px;
}
   </style>
  </head>
 <body>
 
<h1>SERVICIOS</h1>
 
<div class="flex-container">
<div class="box">Service 1 -Lorem Ipsum is simply dummy text of the printing and typesetting ind
ustry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unk
nown printer took a galley of type and scrambled it to make a type specimen book. It has survive
d not only five centuries</div>
<div class="box">Service 2 -Lorem Ipsum is simply dummy text of the printing and typesetting ind
ustry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,.</div>
<div class="box">Service 3 - when an unknown printer took a galley of type and scrambled it to m
ake a type specimen book. It has survived not only five centuries</div>
</div>
  </body>
</html>

You might also like