File size: 3,288 Bytes
866acd6 130dce7 866acd6 9f08429 |
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from tejas-five.vercel.app/ by HTTrack Website Copier/3.x [XR&CO'2017], Thu, 27 Mar 2025 13:06:27 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tejas App</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
animation: fadeIn 1s ease-in;
}
h1 {
color: red;
font-size: 3em;
margin-bottom: 20px;
animation: slideIn 0.8s ease-out;
}
.devil-text {
font-size: 2em;
font-family: "Creepster", cursive;
color: #ff0000;
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff3333;
margin-top: 10px;
animation: fadeIn 1s ease-in;
}
img {
width: 250px;
height: auto;
border: 5px solid white;
border-radius: 10px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
animation: bounce 2s infinite;
margin-top: 20px;
}
.button {
margin-top: 30px;
padding: 15px 30px;
font-size: 1.2em;
color: white;
background: linear-gradient(45deg, #ff0000, #ff7300);
border: none;
border-radius: 25px;
box-shadow: 0 5px 15px rgba(255, 115, 0, 0.5);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
text-decoration: none;
}
.button:hover {
transform: scale(1.1);
box-shadow: 0 8px 25px rgba(255, 115, 0, 0.8);
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet">
</head>
<body>
<h1>Welcome to Tejas</h1>
<p class="devil-text">001 Source Of H4cks</p>
<img src="Picsart_24-11-02_20-51-08-091.png" alt="Tejas App Image">
<a href="https://whatsapp.com/channel/0029Vb9AcCa0rGiD0eJYsQ1n" class="button">GET ALL DAILY TRICKS</a>
</body>
<!-- Mirrored from tejas-five.vercel.app/ by HTTrack Website Copier/3.x [XR&CO'2017], Thu, 27 Mar 2025 13:06:58 GMT -->
</html>
|