0% found this document useful (0 votes)
5 views1 page

Modelo de Caja HTML y CSS

This document is an HTML template for a simple web page titled 'Modelo de Caja'. It includes a styled div element with a dotted purple border and light gray background, containing the text 'CONTENIDO'. The body of the page has a white background.

Uploaded by

laletinoco
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Modelo de Caja HTML y CSS

This document is an HTML template for a simple web page titled 'Modelo de Caja'. It includes a styled div element with a dotted purple border and light gray background, containing the text 'CONTENIDO'. The body of the page has a white background.

Uploaded by

laletinoco
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Modelo de Caja</title>
<style>
.caja {
width: 150px;
height: 150;
padding: 20px;
border: 3px dotted purple;
margin-top: 20px;
background-color: lightgray;
}

body {
background-color: white;
}
</style>
</head>
<body>
<div class="caja">
CONTENIDO
</div>

</body>
</html>

You might also like