Skip to content

Instantly share code, notes, and snippets.

@douglasabnovato
Created March 6, 2023 22:33
Show Gist options
  • Save douglasabnovato/446035127714c5a65da23d305c2df9ff to your computer and use it in GitHub Desktop.
Save douglasabnovato/446035127714c5a65da23d305c2df9ff to your computer and use it in GitHub Desktop.
exemplo html
<!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