| <!DOCTYPE html> |
| <html lang="en"> |
|
|
| |
| <meta http-equiv="content-type" content="text/html;charset=utf-8" /> |
| <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> |
|
|
| |
| </html> |
|
|