Last active
July 20, 2020 14:54
-
-
Save agustinpfs/67ff191bced7062c7d88f061a76d7b9f to your computer and use it in GitHub Desktop.
Revisions
-
agustinpfs revised this gist
Jul 20, 2020 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,6 @@ h1 { text-align: center; } ul { position: absolute; top: 10px; -
agustinpfs created this gist
Jul 20, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,47 @@ <!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>