Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed aula-02-html/.gitkeep
Empty file.
47 changes: 47 additions & 0 deletions aula-02-html/1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Aula 02</title>
</head>
<body>
<header>
<nav>
<br>
<h1>Formulário</h1>
</nav>
</header>
<main>
<p> Nome: <input type="text"></p>


<p>
Quais os melhores Doramas que voçê já assistiu? <br>
<input type="radio">A Alquimia das almas <br>
<input type="radio">Goblin <br>
<input type="radio">Pretendente Surpresa <br>
<input type="radio">My Angel <br>
</p>

<h3>Lista dos Meus Doramas Favoritos</h3>
<ol>
<li>A Alquimia das Almas</li>
<li>O Rei Enterno</li>
<li>Nosso Destino</li>
<li>O'h My Vênus</li>
</ol>

<br>
<input type="submit" name="Finalizar Formulário" >
<input type="reset">
</main>
<br>

<footer>
<a href="aula_02.html">Livros que Já li e tenho vontade de Ler</a>
</footer>

</body>
</html>
53 changes: 53 additions & 0 deletions aula-02-html/aula_02.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Aula 2</title>
</head>
<body >
<header>
<nav>
<br>
<h1>Livros Que Já Li</h1>
<ul>
<li>Mo Dao Zu Shi</li>
<li>Bad Buddy</li>
<li>Dangerous Romance</li>
</ul>
</nav>
</header>
<main>
<table >
<tr>
<th colspan="2" id="li">Livros Que Desejo Comprar</th>
</tr>
<tr>
<th>Livros</th>
<th>Valor</th>
</tr>
<tr>
<td>É assim que acaba</td>
<td>R$41,47</td>
</tr>
<tr>
<td>É assim que começa</td>
<td>R$45,50</td>
</tr>
<tr>
<td>Verity</td>
<td>R$43,70</td>
</tr>
<tr>
<td>Assombrando Adeline Livro-2</td>
<td>R$85,90</td>
</tr>
</table>
</div> </main>
<br>
<footer>
<a href="1.html">Formulário sobre Doramas </a>
</footer>
</body>
</html>