-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
89 lines (74 loc) · 2.49 KB
/
base.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabela Estilizada</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<table>
<tr>
<th colspan="2">Rede Social</th>
<th>N° de inscritos</th>
<th colspan="2">Variação em 24h</th>
</tr>
<tr class="item">
<td class="icone">
<img src="https://www.svgrepo.com/show/512399/instagram-167.svg" width="24">
</td>
<td>Instagram</td>
<td class="right">1000</td>
<td class="right positivo"> +40%</td>
<td>
<button class="button">
Acessar
</button>
</td>
</tr>
<tr class="item">
<td class="icone">
<img src="https://www.svgrepo.com/show/512120/facebook-176.svg" width="24" height="24">
</td>
<td>Facebook</td>
<td class="right">-30</td>
<td class="right negativo">4%</td>
<td>
<button class="button">
Acessar
</button>
</td>
</tr>
<tr class="item">
<td class="icone">
<img src="https://www.svgrepo.com/show/521900/twitter.svg" width="24" height="24">
</td>
<td>Twitter</td>
<td class="right">+20</td>
<td class="right positivo">5%</td>
<td>
<button class="button">
Acessar
</button>
</td>
</tr>
<tr class="item">
<td class="icone">
<img src="https://www.svgrepo.com/show/509293/youtube.svg" width="24" height="24">
</td>
<td>Youtube</td>
<td class="right">+2000</td>
<td class="right positivo">20%</td>
<td>
<button class="button">
Acessar
</button>
</td>
</tr>
</table>
</div>
</body>
</html>