-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
131 lines (112 loc) · 4.28 KB
/
table.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokedex</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="p-3 text-bg-dark">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"></use></svg>
</a>
<!-- LISTA DE ELEMENTOS DA NAV -->
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<a href="index.html">
<span class="fs-4">Pokedex</span> <!-- LOGO -->
</a>
<!-- MENU DROPDOWN -->
<div class="btn-group px-5">
<button type="button" class="btn btn-outline-light">Aprenda +</button>
<button type="button" class="btn btn-outline-light dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="https://www.pokemon.com/br/pokedex/">Outra Pokedex</a></li>
<li><a class="dropdown-item" href="https://www.youtube.com/watch?v=O3Jz4caHeto&pp=ygUPcG9rZW1vbiBwb2tlZGV4">150 Pokemons música</a></li>
</ul>
</div>
</ul>
<div class="text-end">
<a href="login.html" type="button" class="btn btn-outline-success me-2">Login</a>
<a href="sign-up.html" type="button" class="btn btn-secondary">Sign-up</a>
</div>
</div>
</div>
</header>
<!-- container -->
<div class=" container d-flex flex-column align-items-center justify-content-center pt-5">
<h1 class="d-flex justify-content-center mb-10 pb-5 font-weight-bold" style="color: white;">Pokemons mais fortes</h1>
<!-- quadrado branco -->
<div class="container card quadrado_branco p-5">
<table class="table">
<thead>
<tr>
<th scope="col">Top</th>
<th scope="col">Nome</th>
<th scope="col">Tipo</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" rolspan="3">1</th>
<td>Mark</td>
<td>Otto</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
</tbody>
</table>
<table>
<tr>
<th scope="row">Número</th>
<th scope="row" colspan="2">Nome</th>
<th scope="row">Tipo</th>
</tr>
<tr>
<th scope="row">4</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Jacob</td>
<td>Thornton</td>
</tr>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>