-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 2.11 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="BlackCat Labs - The ultimate cybersecurity testing playground" />
<meta name="description" content="BlackCat Labs helps cybersecurity professionals to explore Azure Security affordably and effectively. Explore our real-world scenarios.">
<meta name="author" content="Rogier Dijkman" />
<meta name="robots" content="index, follow" />
<meta property="og:description" content="BlackCat Labs helps cybersecurity professionals to explore Azure Security affordably and effectively. Explore our real-world scenarios." />
<meta property="og:site_name" content="BlackCat Labs" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://raw.githubusercontent.com/azurekid/blackcat/main/media/cateye.png" />
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="/favicon.ico">
<!-- Load font awesome icons for the dropdown arrow -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>BlackCat Labs</title>
</head>
<body>
<nav class="topnav">
<a href="#home">Products</a>
<a href="#blogs">Blogs</a>
<a href="#contact">Contact</a>
<a href="#Labs">Labs</a>
<a href="#" onclick="openPageSource()">Start Hacking</a>
<!-- Add any other menu items here -->
</nav>
<header>
<img src="https://raw.githubusercontent.com/azurekid/blackcat/main/media/cateye.png" alt="BlackCat Logo">
<h1>
Welcome to BlackCat
</h1>
<p>Your one-stop shop for penetration testing tools and services.</p>
</header>
<!-- Rest of your content goes here -->
<footer>
<p>© 2024 BlackCat. All rights reserved.</p>
</footer>
<script>
function openPageSource() {
alert("Use Ctrl + U or right-click and select 'View page source'.");
}
</script>
</body>
</html>