Created
March 6, 2023 22:33
-
-
Save douglasabnovato/446035127714c5a65da23d305c2df9ff to your computer and use it in GitHub Desktop.
exemplo 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Desafio Menu</title> | |
<link href="./estilo.css" rel="stylesheet"> | |
</head> | |
<body> | |
<main> | |
<h1>Lista:</h1> | |
<ol> | |
<li>item 1</li> | |
<li>item 2</li> | |
<li>item 3</li> | |
<li>item 4</li> | |
<li>item 5</li> | |
</ol> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment