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

<header>
<h1>MS-Code</h1>
</header>

<section>
<h2>Formulário</h2>
<form action="#" method="post">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome"><br><br>

<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>

<label for="senha">Senha:</label>
<input type="password" id="senha" name="senha"><br><br>

<label for="idade">Idade:</label>
<input type="number" id="idade" name="idade"><br><br>

<label for="arquivo">Arquivo:</label>
<input type="file" id="arquivo" name="arquivo"><br><br>

<label for="checkbox">Aceito os termos:</label>
<input type="checkbox" id="checkbox" name="checkbox"><br><br>

<label for="botao"></label>
<input type="button" id="botao" name="botao" value="Enviar">
</form>
</section>

<ul>
<li>teste1</li>
<li>teste2</li>
<li>teste3</li>
</ul>

<footer>
<p>&copy; 2024 MS-CODE</p>
</footer>

</body>
</html>
18 changes: 18 additions & 0 deletions aula-02-html/tabela.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<h2>Informações de Contato</h2>
<table border="1">
<tr>
<th>Nome</th>
<th>Email</th>
<th>Telefone</th>
</tr>
<tr>
<td>João Silva</td>
<td>joao@exemplo.com</td>
<td>(27) 1234-5678</td>
</tr>
<tr>
<td>Maria Oliveira</td>
<td>maria@exemplo.com</td>
<td>(27) 9876-5432</td>
</tr>
</table>