-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIP - Home</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="site-data/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="site-data/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="site-data/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="site-data/favicon-16x16.png">
<link rel="manifest" href="site-data/site.webmanifest">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="Logo">
</a>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="https://github.com/ThatSINEWAVE/Discord-Invite-Project">Contribute</a>
<a href="https://ko-fi.com/thatsinewave">Support</a>
</div>
</nav>
</header>
<main>
<div class="hero">
<h1>The Discord Invite Project</h1>
<div class="text-container">
<h3>Exploring the concept of a database to track and analyze Discord invite links.</h3>
<p>The project aims to assist in Open Source Intelligence (OSINT) investigations by providing tools to identify and study Discord servers, including potentially malicious ones.</p>
<p>This repository serves as an educational and research platform exploring the concept of creating a database to track and analyze all possible Discord invite links.</p>
</div>
<a href="about.html" class="btn">Learn More</a>
</div>
</main>
<footer>
<p>© 2024 ThatSINEWAVE - The Discord Invite Project</p>
</footer>
<script src="script.js"></script>
</body>
</html>