Skip to content

Commit

Permalink
HTML: O que é visto pelo usuário
Browse files Browse the repository at this point in the history
  • Loading branch information
ojulio-dev committed Jan 29, 2025
1 parent e7ec7f1 commit adc2857
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions pagina.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="pt_br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>

<header>

<h1>Título</h1>
<h2>Título 2</h2>
<h3>Título 3</h3>

</header>

<nav>

<ul>

<li>item um</li>
<li>item dois</li>

</ul>

</nav>

<table>

<thead>

<tr>
<th>#</th>
<th>Nome</th>
</tr>

</thead>

<tbody>

<tr>
<td>1</td>
<td>Rafael</td>
</tr>

</tbody>

</table>

<a href="https://www.google.com">abrir o google</a>

</body>
</html>

0 comments on commit adc2857

Please sign in to comment.