Created
April 16, 2021 14:10
-
-
Save furenku/6dda408c3798ac8bb4f8c168f620718c to your computer and use it in GitHub Desktop.
menusimple.html
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 name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Tres</title> | |
| </head> | |
| <body> | |
| <!-- header --> | |
| <header> | |
| <!-- nav --> | |
| <nav> | |
| <!-- ul --> | |
| <ul> | |
| <!-- li --> | |
| <li> | |
| <!-- a --> | |
| <a href="uno.html">Uno</a> | |
| </li> | |
| <li> | |
| <!-- a --> | |
| <a href="dos.html">Dos</a> | |
| </li> | |
| <li> | |
| <!-- a --> | |
| <a href="tres.html">Tres</a> | |
| </li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <!-- h1 --> | |
| <h1> | |
| Tres | |
| </h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment