-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (70 loc) · 2.28 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
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
<!DOCTYPE html>
<html>
<head>
<title>Mini CTF</title>
<style>
body {
background-color: #DC143C;
color: white;
font-family: Arial, sans-serif;
}
.header {
text-align: center;
}
.content {
display: flex;
align-items: center;
margin: 20px;
}
.content img {
width: 300px;
height: auto;
margin-right: 20px;
}
.text {
max-width: 600px;
}
.button-container {
margin-top: 20px;
text-align: center;
}
.button {
background-color: #ffffff;
color: #DC143C;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.button:hover {
background-color: #ffcccc;
}
</style>
</head>
<body>
<div class="header">
<img src="https://fontmeme.com/permalink/241118/10667c5ac511e237524af2c6b56579aa.png" alt="mission-impossible-font" border="0">
<p>A Mini Capture The Flag Challenge</p>
<audio controls autoplay>
<source src="https://cloud-knlt6hj2i-hack-club-bot.vercel.app/0brian_initialisation_audio.mp4" type="audio/mp3">
</audio>
</div>
<div class="content">
<img src="https://cloud-7tevuq0qy-hack-club-bot.vercel.app/0ethan_hunt_web1.png" alt="Ethan Hunt Image">
<div class="text">
<h2>Mission: Cryptic Shadows</h2>
<p>
Agent, your mission, should you choose to accept it, involves intercepting a rogue faction’s communications.
They are using advanced cryptographic and steganographic methods to exchange covert instructions.
Your skills in deciphering hidden messages will be critical to neutralizing their plans.
</p>
</div>
</div>
<div class="button-container">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSf4nINdwCdaic2AdM4riHXXvlEP3cHaeaYPDezDShEyI9fsQw/viewform?usp=sf_link" target="_blank" class="button">MISSION:1</a>
</div>
</body>
</html>