-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (70 loc) · 2.77 KB
/
index.html
File metadata and controls
82 lines (70 loc) · 2.77 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>PvZ Fandom</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>PLANTS VS ZOMBIES 2</h1>
<img src="https://play-lh.googleusercontent.com/Kjm7bfXlruSyCCkqyol_ReHq5vy7SKxZ4fE_kgQsPnrtLbrAfrCoxtKWMLH2O_5l0rQ"
alt="Logo do Plants vs Zombies 2" height="100em">
<p>Conheça, cumprimente e derrote legiões de zumbis do início dos tempos ao fim dos dias. Reúna um exército de
plantas poderosas, sobrecarregue-as com Adubo e descubra maneiras incríveis de proteger seus miolos. É um
universo em constante expansão cheio de diversão! E de zumbis – montes e montes de zumbis.</p>
<p>Site oficial do <a href="https://www.ea.com/pt-br/games/plants-vs-zombies">PvZ</a>.</p>
</header>
<table>
<caption>Jogos do PvZ e seus anos de lançamento</caption>
<thead>
<tr>
<th class="table-head">Jogo</th>
<th class="table-head">Ano de Lançamento</th>
</tr>
</thead>
<tbody>
<tr>
<td>Plants vs Zombies</td>
<td>2009</td>
</tr>
<tr>
<td>Plants vs Zombies 2</td>
<td>2013</td>
</tr>
<tr>
<td>Plants vs Zombies Heroes</td>
<td>2017</td>
</tr>
</tbody>
</table>
<form action="">
<fieldset>
<legend>Contate-nos</legend>
<label for="jogos">Jogo favorito: </label>
<select name="jogos" id="jogos">
<option value="" selected>Escolha uma opção</option>
<option value="Plants vs Zombies">Plants vs Zombies</option>
<option value="Plants vs Zombies 2">Plants vs Zombies 2</option>
<option value="Plants vs Zombies Heroes">Plants vs Zombies Heroes</option>
</select>
<label for="msg">Deixe sua opinião: </label>
<textarea name="msg" id="msg" cols="28" rows="6"></textarea>
<button id="reset">Limpar</button>
<button type="submit">Enviar</button>
</fieldset>
</form>
<p>As plantas mais usadas no PvZ 2: </p>
<ul>
<li>Girassol</li>
<li>Disparaervilha</li>
<li>Noz</li>
<li>Batatamina</li>
<li>Repolho Boxeador</li>
</ul>
<script src="script.js"></script>
</body>
</html>