-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload.html
60 lines (51 loc) · 3.13 KB
/
load.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<title>Loading</title>
</head>
<body onload="callFunction()">
<div id="loading" class="screen">
<div class="hostel">
<svg width="90" height="90" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d=" M 750 75C
764 75 775 86 775 100C 775 100 775 875 775 875C 775 875 800 875 800 875C 814 875 825 886 825 900C 825
914 814 925 800 925C 800 925 200 925 200 925C 186 925 175 914 175 900C 175 886 186 875 200 875C 200 875
225 875 225 875C 225 875 225 100 225 100C 225 86 236 75 250 75C 250 75 750 75 750 75M 275 875C 275 875
437 875 437 875C 437 875 437 725 437 725C 438 718 443 713 450 713C 450 713 550 713 550 713C 557 713
562 718 563 725C 563 725 563 875 563 875C 563 875 725 875 725 875C 725 875 725 125 725 125C 725 125 275
125 275 125C 275 125 275 875 275 875M 450 188C 457 188 462 193 462 200C 462 200 462 300 462 300C 462 307
457 312 450 312C 450 312 350 312 350 312C 343 312 338 307 337 300C 337 300 337 200 337 200C 338 193 343
188 350 188C 350 188 450 188 450 188M 650 188C 657 188 662 193 663 200C 663 200 663 300 663 300C 662 307
657 312 650 312C 650 312 550 312 550 312C 543 312 538 307 538 300C 538 300 538 200 538 200C 538 193 543
188 550 188C 550 188 650 188 650 188M 450 362C 457 363 462 368 462 375C 462 375 462 475 462 475C 462 482
457 487 450 487C 450 487 350 487 350 487C 343 487 338 482 337 475C 337 475 337 375 337 375C 338 368 343
363 350 362C 350 362 450 362 450 362M 650 362C 657 363 662 368 663 375C 663 375 663 475 663 475C 662 482
657 487 650 487C 650 487 550 487 550 487C 543 487 538 482 538 475C 538 475 538 375 538 375C 538 368 543
363 550 362C 550 362 650 362 650 362M 450 538C 457 538 462 543 462 550C 462 550 462 650 462 650C 462 657
457 662 450 663C 450 663 350 663 350 663C 343 662 338 657 337 650C 337 650 337 550 337 550C 338 543 343
538 350 538C 350 538 450 538 450 538M 650 538C 657 538 662 543 663 550C 663 550 663 650 663 650C 662 657
657 662 650 663C 650 663 550 663 550 663C 543 662 538 657 538 650C 538 650 538 550 538 550C 538 543 543
538 550 538C 550 538 650 538 650 538"/></svg>
</div>
<div class="sun"></div>
</div>
<script>
var load;
setTimeout(function() {
window.location.href = "form.html";
}, 500);
function callFunction(){
load = setTimeout (showPage, 1000);
}
function showPage(){
document.getElementById("loading").style.display = "none";
// document.getElementById("homepage").style.display = "block";
}
</script>
</body>
</html>