Created
October 25, 2021 16:39
-
-
Save furenku/5db0ed6c4beaa29a10ed829185995783 to your computer and use it in GitHub Desktop.
primer-sitio
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
| <!-- html:5 --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Primer Sitio</title> | |
| </head> | |
| <body> | |
| <!-- header#cabecera --> | |
| <header id="cabecera"> | |
| <!-- nav#menu --> | |
| <nav id="menu"> | |
| <!-- ul --> | |
| <ul> | |
| <!-- li --> | |
| <li> | |
| <!-- a --> | |
| <a href="index.html"> | |
| Inicio | |
| </a> | |
| </li> | |
| <!-- li --> | |
| <li> | |
| <!-- a --> | |
| <a href="uno.html"> | |
| Uno | |
| </a> | |
| </li> | |
| <!-- li --> | |
| <li> | |
| <!-- a --> | |
| <a href="dos.html"> | |
| Dos | |
| </a> | |
| </li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <!-- h1 --> | |
| <h1> | |
| Primer Sitio!!! | |
| </h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment