-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.html
More file actions
31 lines (22 loc) · 755 Bytes
/
loading.html
File metadata and controls
31 lines (22 loc) · 755 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
<!DOCTYPE HTML>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name="google-site-verification" content="RsPq3PdhD-AFcDzo0C06xCjH5xOErevngutuGdQ7yA0" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "./css/loading.css" type = "text/css">
<link rel = "icon" href="icons/rho_favicon.ico" type = "image/x-icon">
</head>
<body>
<div class = "full_rho">
<div class = "first_rho"></div>
<div class = "second_rho"></div>
</div>
<div class = "loading"> Hello visitor! Please wait... </div>
<script>
var timer = setTimeout(function() {
window.location='./index.html'
}, 9000);
</script>
</body>
</html>