-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (88 loc) · 5 KB
/
index.html
File metadata and controls
88 lines (88 loc) · 5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://proactive-development.github.io/assets/css/style.css">
<!-- <link rel="stylesheet" href="./assets/css/style.css"> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
</head>
<body>
<div class="top-container">
<div>
<h1>Welcome To Proactive Development</h1>
<h2>Creating software, stopping Malware.</h2>
</div>
<div>
<img src="https://raw.githubusercontent.com/Proactive-Development/Logos/main/Proactive/logo.png" width="150px" style="border-radius: 30px;" class="logo" id="logo" onmouseover="glitch_logo()" onmouseleave="glitch_logo_back()">
</div>
</div>
<br>
<br>
<br>
<div class="section_1">
<h2>What is Proactive Development?</h2>
<p>At Proactive Development we make software to help people. Utilities, System Tools, Software packages and more. We also research into malware and threats and help stop malware.</p>
</div>
<br>
<div class="section_1">
<h2><i class="bi bi-code-slash"></i> Our public code is free and open source <sup>*</sup></h2>
<p>Why not check out our github organisation you can also ask to join the organisation from the discord server</p>
<button onclick="window.location.href = 'https://github.com/Proactive-Development'"><i class="bi bi-github"></i> Go To Github Organisation</button>
<p style="font-size: x-small;color: gray;">* This organisation dose have some closed source software everything on the <strong>github organisation and marked open source</strong> is free and open source</p>
</div>
<br>
<div class="section_1">
<h2><i class="bi bi-megaphone-fill"></i> Want to be part of the discord?</h2>
<p>Join our discord server and get to know other developers and get to know the organisation. Also get news from out announcements channel</p>
<button onclick="window.location.href = 'https://discord.gg/rBrDnQxBsM'"><i class="bi bi-discord"></i> Join Discord Server</button>
</div>
<br>
<h2 style="text-align: center;">Meet the founders of Proactive Development</h2>
<div class="section_2">
<img src="https://cdn.discordapp.com/avatars/707318818090778745/a_577755384019f7266909a5bb37475b2d.gif?size=512">
<h2>awesomelewis2007</h2>
<br>
</div>
<br>
<div class="section_2">
<img src="https://cdn.discordapp.com/avatars/696449014308274346/a_668696831ab2b94d1221fafdf76cc6a6.gif?size=512">
<h2>Wolfieboy</h2>
<br>
</div>
<br>
<h2 style="text-align: center;">Stopping malware with open source software</h2>
<br>
<div class="section_1">
<h2><i class="bi bi-bug-fill"></i> Check out our malware watcher</h2>
<p>This website uses reports from proactive development to point out new threats </p>
<button onclick="window.location.href = 'https://proactive-development.github.io/Malware-Watch/'"><i class="bi bi-globe2"></i> Malware Watch Website</button>
<button onclick="window.location.href = 'https://github.com/Proactive-Development/Malware-Watch/issues?q=is%3Aissue+is%3Aopen+label%3AMalware+'"><i class="bi bi-github"></i> Malware Watch Reports</button>
</div>
<br>
<div class="section_1">
<h2><i class="bi bi-bug-fill"></i> YARA Rules</h2>
<p>Check out our YARA rules </p>
<button onclick="window.location.href = 'https://github.com/Proactive-Development/YARA'"><i class="bi bi-github"></i> YARA Rules Github</button>
</div>
<br>
<h2 style="text-align: center;">Check out all our software</h2>
<div class="section_1" style="background: none;">
<button onclick="window.location.href = 'https://github.com/orgs/Proactive-Development/repositories'" style="width: 100%;"><i class="bi bi-github"></i> See All Public Repositories</button>
</div>
<br>
<script>
function glitch_logo(){
var logo = document.getElementById("logo");
logo.src = "https://cdn.discordapp.com/attachments/908748835541643304/964484444276809779/logo_glitch.gif";
}
function glitch_logo_back(){
var logo = document.getElementById("logo");
logo.src = "https://raw.githubusercontent.com/Proactive-Development/Logos/main/Proactive/logo.png";
}
</script>
</body>
</html>