Last active
July 20, 2020 14:54
-
-
Save agustinpfs/67ff191bced7062c7d88f061a76d7b9f to your computer and use it in GitHub Desktop.
CSS básico. Ejemplo primero.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Ejemplo1</title> | |
<style> | |
h1 { | |
text-align: center; | |
} | |
ul { | |
position: absolute; | |
top: 10px; | |
right: 10px; | |
} | |
li { | |
display: inline; | |
} | |
p { | |
color: red; | |
} | |
figure { | |
text-align: center; | |
} | |
</style> | |
</head> | |
<body> | |
<main> | |
<h1>Título</h1> | |
<ul> | |
<li>ítem 1</li> | |
<li>ítem 2</li> | |
<li>ítem 3</li> | |
</ul> | |
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Veniam, ipsa inventore. Quidem unde nesciunt eos | |
error tempora nemo minus suscipit repudiandae aut? Eos delectus nesciunt reprehenderit hic provident dolorem | |
reiciendis.</p> | |
<br> | |
<br> | |
<figure><img src="https://picsum.photos/id/1020/600/400" alt=""></figure> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment