-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
50 lines (41 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Please don't remove this 🥺🙏-->
<title>OnlyScripts - Loading</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body >
<!-- Background Image -->
<div class="background-color"></div>
<div class="container">
<!-- Server name -->
<h1 class="title" id="title" >Server Name</h1>
<!-- Obvious but its the "Loading..." -->
<h1 class="description LoadingDots">Loading
<div class="dot first"></div>
<div class="dot second"></div>
<div class="dot third"></div>
</h1>
<!-- Loading bar -->
<progress id="progress" min="0" max="100" value="0" class="loadbar"></progress>
</div>
<!--
Uncomment to enable Discord logo and HREF on top left corner
<div class="discord-bg">
</div>
<div class="discord">
<a href="discord.com/invite/your-link">
<img src="img/discord.webp" alt="discord" class="discord">
</a>
</div>
-->
<!-- Advertisement <3 Feel free to remove it but ngl I would love to see it there :D -->
<p class="ad">Made with 💖 by VeryAppropriateName</p>
</div>
</body>
</html>