-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (93 loc) · 1.97 KB
/
index.html
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
<body onload="islogeddd()">
<style>
/* styles.css */
body {
margin: 0;
padding: 0;
background-color: white;
}
#fade-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: white; /* Initial black background */
color: #f9f9f9; /* Text color */
display: flex;
justify-content: center;
align-items: center;
opacity: 0; /* Start with 0 opacity */
animation: fadein 2s ease forwards; /* Animation duration: 2 seconds */
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Center the content within the <center> tag */
center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh; /* Adjust as needed */
text-align: center;
background-color: white; /* Optional background color */
}
/* Style the <h1> element */
h1 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 0.5rem;
color: #333; /* Optional text color */
}
/* Style the <h5> element */
h5 {
font-size: 1rem;
margin-bottom: 1rem;
color: #666; /* Optional text color */
}
/* Style the <h6> element */
h6 {
font-size: 0.8rem;
margin-bottom: 1rem;
color: #999; /* Optional text color */
}
/* Style the button */
button {
background-color: #007bff; /* Optional button color */
color: #fff; /* Optional button text color */
border: none;
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3; /* Optional hover color */
}
/* Style the link within the button */
button a {
color: inherit;
text-decoration: none;
}
/* Add spacing between elements */
button,
h1,
h5,
h6 {
margin-bottom: 1rem;
}
</style>
<div id="fade-container">
<center>
<h1>BIG-LEARN</h1>
<h5>Learn as much as you want!</h5>
<h6>This website is ready! <a href="https://fun-learn-a.vercel.app">FUN-LEARN</a></h6>
</center>
</div>
</body>