-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleis.html
163 lines (137 loc) · 4.91 KB
/
leis.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./Imagens/Icone/icon.png" type="image/png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="moldeCatalogo.css">
<link href=" https://fonts.cdnfonts.com/css/montserrat " rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- BARRA FIXA -->
<header>
<div class="container">
<input type="checkbox" id="checkbox-menu">
<label for="checkbox-menu">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="navegaçao">
<div class="navegaçao_logo">
<a href="index.html"><img src="Imagens/barra fixa/logo.png" alt="Logo" /></a>
</div>
</div>
<!-- Popup -->
<div class="popup" id="popup">
<div class="popup-content">
<span class="close" onclick="closePopup()">×</span>
<a href="ataquesCiberneticos.html">
<p>Artigos sobre Ataques Cibernéticos</p>
</a>
<a href="ferramentas.html">
<p>Ferramentas</p>
</a>
<a href="leis.html">
<p>Leis</p>
</a>
<a href="estudosDeCaso.html">
<p>Estudos de caso</p>
</a>
<a href="artigoPilaresDaSegurança.html">
<p>Pilares da Segurança</p>
</a>
<a href="artigoBoasPraticas.html">
<p>Boas práticas</p>
</a>
<a href="AtaquesJogos.html">
<p>Ataques em Jogos</p>
</a>
<a href="sobreNos.html">
<p>Sobre Nós</p>
</a>
</div>
</div>
<script src="script.js"></script>
</header>
<!-- CONTEÚDO -->
<h1>LEIS</h1> <!-- título -->
<article class="fila"> <!-- fileira 1 -->
<ul>
<li><a href="leiLGPD.html"><img src="Imagens/Leis/LGPD.png" alt="LGPD"></a>
<div class="caixaCinza">
<h2>LGPD</h2>
</div>
</li>
</ul>
<ul>
<li><a href="leiISOIEC27002.html"><img src="Imagens/Leis/ISOIEC 27002.png" alt="ISO/IEC 27002"></a>
<div class="caixaCinza">
<h2>ISO/IEC 27002</h2>
</div>
</li>
</ul>
<ul>
<li><a href="leiISO27001.html"><img src="Imagens/Leis/ISO 27001.png" alt="ISO 27001"></a>
<div class="caixaCinza">
<h2>ISO 27001</h2>
</div>
</li>
</ul>
</article>
<article class="fila"> <!-- fileira 2 -->
<ul>
<li><a href="lei127372021.html"><img src="Imagens/Leis/Lei 12.7372012.png" alt="Lei 12.737/2012"></a>
<div class="caixaCinza">
<h2>Lei 12.737/2012</h2>
</div>
</li>
</ul>
<ul>
<li><a href="lei12965.html"><img src="Imagens/Leis/Lei 12.965.png" alt="Lei 12.965"></a>
<div class="caixaCinza">
<h2>Lei 12.965</h2>
</div>
</li>
</ul>
<ul>
<li><a href="leiCodigoPenal154-A.html"><img src="Imagens/Leis/Código Penal, em seu artigo 154-A.png"
alt="Código Penal, em seu artigo 154-A"></a>
<div class="caixaCinza">
<h2>Código Penal, em seu artigo 154-A</h2>
</div>
</li>
</ul>
</article>
<!-- RODAPÉ -->
<footer>
<div class="footer-icon">
<div class="footer-left">
<img src="Imagens/rodape/icone email.png" alt="Ícone de E-mail">
<span>[email protected]</span>
</div>
<div class="footer-left">
<img src="Imagens/rodape/icone instagram.png" alt="Ícone do Instagram">
<span>@seuinstagram</span>
</div>
</div>
<div class="footer-text">
<div class="footer-right">
<a href="./sobreNos.html">
<span>Sobre Nós</span>
</a>
<div class="footer-right">
<a href="#">
<span>Mapa do Site</span>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>