1
FH
FOL
GBD
ISO
LMSGI
caja-redonda
caja-redonda.html
form-test
library
t1-NicolasOrtega
web-ceu
xml-aversifunciona-sa
preguntas-examen-t1.txt
preguntas-examen-t2.txt
presentacion.txt
t3TablasFormularios-NicolasOrtega.html
PAR
VM-credentials.txt
templates
.gitignore
README.md
27 lines
363 B
HTML
27 lines
363 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>La Caja Redonda</title>
|
||
|
</head>
|
||
|
<style>
|
||
|
.mi-caja {
|
||
|
width: 300px;
|
||
|
height: 300px;
|
||
|
border-style: solid;
|
||
|
border-width: 2px;
|
||
|
border-radius: 100%;
|
||
|
}
|
||
|
|
||
|
.mi-caja p {
|
||
|
text-align: center;
|
||
|
margin: auto;
|
||
|
width: 60%;
|
||
|
}
|
||
|
</style>
|
||
|
<body>
|
||
|
<div class="mi-caja" >
|
||
|
<p>¡Hola! Soy la caja redonda.</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|