-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
80 lines (70 loc) · 2.32 KB
/
index2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saiba mais</title>
<link rel="stylesheet" type="text/css" href="index2.css">
</head>
<body>
<header>
<center> <h1>Shadow Fight 3</h1> </center>
<div class="caixa">
<center> <img src="images.jpeg" id="sf3"> </center>
<nav>
<ul>
<li> <a href="index.html"> Home </a></li>
<li> <a href="index3.html">Contato </a></li>
</ul>
</nav>
</div>
</header>
<h1>Essas são as facções que você pode escolher</h1>
<main>
<ul class="produtos">
<li>
<h2> Legião </h2>
<img src="legion.jpeg">
<p class="produto-descricao">Armas pesadas e implacáveis</p>
</li>
<li>
<h2> Dinastia </h2>
<img src="dinasty.jpeg" id="dinasty">
<p class="produto-descricao">Armas rápidas e boa movimentação</p>
</li>
<li>
<h2> Arautos</h2>
<img src="arautos.jpeg" id="arautos">
<p class="produto-descricao">Armas fortes que carregam golpes críticos</p>
</li>
</main>
<table>
<thead>
<tr>
<th>Outros jogos</th>
</tr>
</thead>
<tbody>
<tr>
<td>Shadow Fight</td>
<td>Shadow Fight2</td>
<td>Shadow Fight4</td>
<td>Shadow Fight2 Special Edition</td>
<td>Vector</td>
<td>Vector2</td>
<td>Lintrix</td>
<td>Spine</td>
</tr>
</tbody>
</table>
<fieldset>
<legend>Qual das facções você prefere ou gostaria de escolher?</legend>
<label for="radio-legion"><input type="radio" name="contato" value="legion" id="radio-legion">Legião</label>
<label for="radio-dinasty"><input type="radio" name="contato" value="dinasty" id="radio-dinasty">Dinastia</label>
<label for="radio-arautos"><input type="radio" name="contato" value="arautos" id="radio-arautos">Arautos</label>
</fieldset>
<footer>
<p class="copyright">© Copyright Nekki - 2023</p>
</footer>
</body>
</html>