-
Notifications
You must be signed in to change notification settings - Fork 0
/
yopeso_landingpage.html
72 lines (71 loc) · 2.24 KB
/
yopeso_landingpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BO-HO-HO! We Got You!</title>
<style>
body {
background-color: #1B1B1B;
color: #fff;
font-family: 'Arial', sans-serif;
text-align: center;
padding: 50px;
}
h1 {
font-size: 3em;
color: #FF7518;
margin-bottom: 20px;
}
p {
font-size: 1.5em;
margin: 20px auto;
max-width: 600px;
}
.spooky {
font-size: 2em;
color: #FF7518;
text-shadow: 2px 2px 5px #000;
}
.message {
background-color: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 20px #FF7518;
}
.message p {
margin: 10px 0;
}
.caution {
color: #FF7518;
font-weight: bold;
}
img {
max-width: 100%;
height: auto;
margin-top: 30px;
}
footer {
margin-top: 50px;
font-size: 0.8em;
color: #aaa;
}
</style>
</head>
<body>
<img src="./images/logotype_gray25_BG_yellow166_42.png" alt="Yopeso logo">
<h1>BO-HO-HO! 🎃 We Got You!</h1>
<div class="message">
<center> <p class="spooky"> 🎃 Happy Halloween! 👻</p>
<p>Looks like you clicked on a suspicious link...</p>
<p class="caution">This is just a friendly reminder:</p>
<p><strong>Always be cautious with the links you click!</strong></p>
<p>In a real phishing scenario, your data could be at risk.</p>
<p><strong>Stay safe and vigilant, especially this spooky season!</strong></p></center>
</div>
<img src="./images/DALL·E 2024-10-15 13.27.09 - A minimalist spooky Halloween-themed banner featuring a dark night sky without a moon. In the center is a silhouette of a spooky mansion with tall, po.webp" alt="Halloween spooky image">
<footer>
<p>This is part of your company's cybersecurity awareness program.</p>
</footer>
</body>
</html>