HenzHosting commited on
Commit
866acd6
·
verified ·
1 Parent(s): 9f08429

Upload 2 files

Browse files
Files changed (2) hide show
  1. Picsart_24-11-02_20-51-08-091.png +0 -0
  2. index.html +110 -18
Picsart_24-11-02_20-51-08-091.png ADDED
index.html CHANGED
@@ -1,19 +1,111 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <!-- Mirrored from tejas-five.vercel.app/ by HTTrack Website Copier/3.x [XR&CO'2017], Thu, 27 Mar 2025 13:06:27 GMT -->
5
+ <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
6
+ <head>
7
+ <meta charset="UTF-8">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <title>Tejas App</title>
10
+ <style>
11
+ body {
12
+ background-color: black;
13
+ color: white;
14
+ font-family: Arial, sans-serif;
15
+ margin: 0;
16
+ padding: 0;
17
+ overflow: hidden;
18
+ display: flex;
19
+ flex-direction: column;
20
+ align-items: center;
21
+ justify-content: center;
22
+ height: 100vh;
23
+ text-align: center;
24
+ animation: fadeIn 1s ease-in;
25
+ }
26
+
27
+ h1 {
28
+ color: red;
29
+ font-size: 3em;
30
+ margin-bottom: 20px;
31
+ animation: slideIn 0.8s ease-out;
32
+ }
33
+
34
+ .devil-text {
35
+ font-size: 2em;
36
+ font-family: "Creepster", cursive;
37
+ color: #ff0000;
38
+ text-shadow: 0 0 10px #ff0000, 0 0 20px #ff3333;
39
+ margin-top: 10px;
40
+ animation: fadeIn 1s ease-in;
41
+ }
42
+
43
+ img {
44
+ width: 250px;
45
+ height: auto;
46
+ border: 5px solid white;
47
+ border-radius: 10px;
48
+ box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
49
+ animation: bounce 2s infinite;
50
+ margin-top: 20px;
51
+ }
52
+
53
+ .button {
54
+ margin-top: 30px;
55
+ padding: 15px 30px;
56
+ font-size: 1.2em;
57
+ color: white;
58
+ background: linear-gradient(45deg, #ff0000, #ff7300);
59
+ border: none;
60
+ border-radius: 25px;
61
+ box-shadow: 0 5px 15px rgba(255, 115, 0, 0.5);
62
+ cursor: pointer;
63
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
64
+ text-decoration: none;
65
+ }
66
+
67
+ .button:hover {
68
+ transform: scale(1.1);
69
+ box-shadow: 0 8px 25px rgba(255, 115, 0, 0.8);
70
+ }
71
+
72
+ @keyframes fadeIn {
73
+ from {
74
+ opacity: 0;
75
+ }
76
+ to {
77
+ opacity: 1;
78
+ }
79
+ }
80
+
81
+ @keyframes slideIn {
82
+ from {
83
+ transform: translateY(-50px);
84
+ opacity: 0;
85
+ }
86
+ to {
87
+ transform: translateY(0);
88
+ opacity: 1;
89
+ }
90
+ }
91
+
92
+ @keyframes bounce {
93
+ 0%, 100% {
94
+ transform: translateY(0);
95
+ }
96
+ 50% {
97
+ transform: translateY(-20px);
98
+ }
99
+ }
100
+ </style>
101
+ <link href="https://fonts.googleapis.com/css2?family=Creepster&amp;display=swap" rel="stylesheet">
102
+ </head>
103
+ <body>
104
+ <h1>Welcome to Tejas</h1>
105
+ <p class="devil-text">Made By SG Modder</p>
106
+ <img src="Picsart_24-11-02_20-51-08-091.png" alt="Tejas App Image">
107
+ <a href="https://whatsapp.com/channel/0029Vb9AcCa0rGiD0eJYsQ1n" class="button">GET ALL DAILY TRICKS</a>
108
+ </body>
109
+
110
+ <!-- Mirrored from tejas-five.vercel.app/ by HTTrack Website Copier/3.x [XR&CO'2017], Thu, 27 Mar 2025 13:06:58 GMT -->
111
  </html>