-
Notifications
You must be signed in to change notification settings - Fork 0
/
atividade.html
40 lines (30 loc) · 1 KB
/
atividade.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!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>
<div class="header">Cabeçalho do site</div>
<div class="footer">Rodapé do site</div>
</head>
<body>
<p>Esse é um texto <span class="destaque">destacado</span> no parágrafo.</p>
<h1>Título Principal</h1>
<h2>Subtítulo</h2>
<p>Este é um parágrafo simples.</p>
<p>Este é outro parágrafo.</p>
<img src="imagem1.jpg" alt="Descrição da Imagem 1">
<img src="imagem2.jpg" alt="Descrição da Imagem 2">
<form action="/submit" method="POST">
Nome: <input type="text" name="nome"><br>
Email: <input type="email" name="email"><br>
Mensagem: <textarea name="mensagem"></textarea><br>
<button type="submit">Enviar</button>
</form>
<form>
Escolha uma opção:
<input type="radio" name="opcao" value="1"> Opção 1
<input type="radio" name="opcao" value="2"> Opção 2
</form>
</body>
</html>