<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SUPER TRUSTWORTHY SITE!</title>
<style>
body {
background-color: #00FF00;
color: #FF00FF;
font-family: "Comic Sans MS", cursive, sans-serif;
text-align: center;
margin: 0;
padding: 20px;
}
.blink {
font-size: 2em;
font-weight: bold;
color: #FF0000;
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.marquee {
font-size: 1.5em;
font-weight: bold;
background-color: #FFFF00;
color: #0000FF;
padding: 10px;
margin-top: 20px;
border: 5px dashed #FF00FF;
width: 80%;
margin: auto;
}
.content {
margin-top: 30px;
}
.button {
background-color: #FF0000;
color: #FFFF00;
font-size: 1.5em;
padding: 10px 20px;
border: 5px solid #0000FF;
cursor: pointer;
margin-top: 20px;
}
.button:hover {
background-color: #FF00FF;
color: #000;
}
</style>
</head>
<body>
<h1 class="blink">WELCOME TO THE MOST TRUSTWORTHY SITE!</h1>
<div class="marquee">
<marquee>THIS SITE IS SUPER TRUSTWORTHY! YOU CAN TRUST US! NOTHING SUSPICIOUS HERE!</marquee>
</div>
<div class="content">
<p>Hey there! You can totally trust this site. We are <b>SUPER trustworthy!</b></p>
<p>Click the button below to connect your crypto wallet. We promise, it's safe! Trust in us!!!</p>
<button class="button" onclick="showWarning()">Connect Your Wallet!</button>
</div>
<script>
function showWarning() {
alert("DON'T EVER CLICK RANDOM BUTTONS! YOU WILL BE ROBBED! BAD BOY/GIRL! NOW GO FEED YOUR DOG!");
}
</script>
</body>
</html>