-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHackySecOS.html
60 lines (55 loc) · 1.55 KB
/
HackySecOS.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
<!DOCTYPE html>
<html lang="PT-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackySecOS</title>
<style>
body {
font-family: Arial, sans-serif:
text-align: center;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
}
header {
padding: 20px;
background-color; #0078d4;
color: white;
border: none;
padding: 10px 20px;
margin-top: 20px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #0056a3;
}
footer {
margin-top: 20px;
padding: 10px;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Bem-vindo ao HackySecOS</h1>
<p>Feito para cibersegurança (Hacker Ético) e inteligência anti-viral</p>
</header>
<main>
<p>Clique abaixo para explorar mais funcionalidades do HackySecOS:</p>
<button onclick="showMessage()">Explorar</button>
</main>
<footer>
<p>© 2024 HackySecOS. Todos os direitos reservados.</p>
</footer>
<script>
function showMessage() {
alert('Funcionalidade em construção! Fique ligado para mais.');
}
</script>
</body>
</html>