-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (54 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
<!-- Good default declaration:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of eval() and inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
* Enable eval(): add 'unsafe-eval' to default-src
* Create your own at http://cspisawesome.com
-->
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: 'unsafe-inline' https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; media-src *" /> -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>School One</title>
</head>
<style type="text/css">
.caption {
position: absolute;
left: 0;
top: 40%;
width: 100%;
text-align: center;
color: #000;
}
.caption span.border {
color: #fff;
padding: 10px;
font-size: 25px;
font-weight: bolder;
letter-spacing: 10px;
}
</style>
<body>
<div class="bgimg-1">
<div class="caption">
<div style="background:url('img/loading.gif') no-repeat center top;background-size: 130px 130px;">
<span class="border"><img src="img/logo.png" width="64" height="64" style="margin-top: 35px;"></span><br><br><br>
</div>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript">
setTimeout(function(){
window.location.href = 'home.html';
}, 10000);
</script>
</body>
</html>