lunes, 18 de septiembre de 2017

2ª Parte Módulo 2 Actividad 4

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Curriculum Vitae de Bruce Wayne</title>
<style>

body {
    font-family: Arial, Verdana;
}

h1 {
    font-family: Georgia;
    font-size: 32px;
    font-variant: small-caps;
}

h2 {
    font-family: Georgia;
    font-size: 24px;
    font-variant: small-caps;
    font-style: italic;
}

li {
    font-weight: bold;
}

strong {
    font-weight: normal;
}

</style>
</head>
<body>

<h1>Curriculum Vitae de Bruce Wayne</h1>

<h2>Datos personales</h2>
<ul>
<li>Nombre completo: <strong>Bruce Wayne</strong></li>
<li>Fecha de nacimiento: <strong>1/5/1939</strong></li>
<li>Lugar de nacimiento: <strong>Gotham City</strong></li>
</ul>

<h2>Formación académica</h2>
<ul>
<li>1956-1961: <strong>Universidad del Espantapájaros</strong></li>
<li>1952-1956: <strong>Instituto de Dos Caras</strong></li>
<li>1944-1952: <strong>Escuela Primaria del Joker</strong></li>
</ul>

<h2>Experiencia laboral</h2>
<ul>
<li>1975-1985: <strong>En el paro</strong></li>
<li>1965-1975: <strong>Cazavillanos y demás chusma</strong></li>
<li>1962-1965: <strong>Aprendiz de superhéroe</strong></li>
</ul>

</body>
</html>

No hay comentarios:

Publicar un comentario

2ª Parte Módulo 3 Examen

1) En CSS, desde el interior hacia afuera de un elemento, ¿cuál es el orden correcto del modelo de caja? content, padding, border, margin 2)...