-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (100 loc) · 3.38 KB
/
index.html
File metadata and controls
109 lines (100 loc) · 3.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Welcome to Anito | Under Development | By Siddhartha Tiwari</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
/* Dark Anime Theme (HiAnime Inspired) */
body {
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: radial-gradient(circle, #1a1a2e, #0f3460);
color: #fff;
}
/* Neon Glow Container */
.container {
text-align: center;
background: rgba(25, 25, 50, 0.9);
padding: 40px;
box-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
border-radius: 12px;
backdrop-filter: blur(10px);
width: 90%;
max-width: 500px;
transition: transform 0.3s ease;
border: 2px solid rgba(0, 162, 255, 0.7);
}
.container:hover {
transform: scale(1.02);
box-shadow: 0 0 30px rgba(0, 162, 255, 0.8);
}
/* Heading */
h1 {
font-size: 32px;
font-weight: 600;
margin-bottom: 10px;
text-transform: uppercase;
font-family: 'Orbitron', sans-serif;
color: #00a2ff;
text-shadow: 0 0 10px rgba(0, 162, 255, 0.8);
}
h2 {
font-size: 18px;
font-weight: 300;
color: #a6c1ff;
}
/* Button with Neon Effect */
.home-link {
display: inline-block;
margin-top: 20px;
font-size: 18px;
color: #fff;
text-decoration: none;
padding: 12px 25px;
border-radius: 50px;
background: linear-gradient(90deg, #00a2ff, #0077ff);
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(0, 162, 255, 0.8);
border: none;
}
.home-link:hover {
background: linear-gradient(90deg, #0077ff, #0055ff);
box-shadow: 0 0 25px rgba(0, 162, 255, 1);
}
/* GitHub Card (Fixed inside container) */
.iframe-container {
margin-top: 20px;
display: flex;
justify-content: center;
padding: 10px;
background: rgba(0, 162, 255, 0.2);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
}
iframe {
width: 100%;
max-width: 450px;
height: 180px;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Anito!</h1>
<h2>Developed By Siddhartha Tiwari</h2>
<a href="home.php" class="home-link">Go to Home Page</a>
<div class="iframe-container">
<iframe src="https://github.com/sponsors/MetaHat/card" title="Sponsor MetaHat"></iframe>
</div>
</div>
</body>
</html>