forked from github/dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining.html
More file actions
38 lines (38 loc) · 938 Bytes
/
training.html
File metadata and controls
38 lines (38 loc) · 938 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Nite</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #2c3e50;
color: white;
text-align: center;
margin-top: 50px;
}
h1 {
font-size: 3em;
margin: 20px;
}
p {
font-size: 1.5em;
}
.message {
font-size: 2em;
margin-top: 30px;
animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<h1>Welcome Nite!</h1>
<p>Good evening, have a relaxing night ahead!</p>
<div class="message">✨ Enjoy the calm of the night ✨</div>
</body>
</html>