-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
89 lines (84 loc) · 3.39 KB
/
help.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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 *" /> -->
<title>School One</title>
<link rel="stylesheet" type="text/css" href="w3css/4/w3.css">
<link rel="stylesheet" href="ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
@media screen and (max-width: 455px) {
.h3 {
font-size:16px;
}
body {
font-size:10px;
}
}
.w3-note {
background-color: #ffffcc;
border-left: 6px solid #ffeb3b;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="w3-container w3-green">
<h3><a href="home.html"><i class="fa fa-chevron-circle-left"></i></a> Help</h3>
</div>
<div class="w3-container w3-margin-bottom w3-margin-top">
<!-- notis start-->
<ul class="w3-ul w3-card-4">
<li class="w3-bar">
<a href="contact_us.html" style="text-decoration: none;">
<span class="w3-bar-item w3-button w3-white w3-xlarge w3-right"><i class="fa fa-angle-double-right"></i> </span>
<div class="w3-bar-item" style="margin-top: 10px;">
<span>Contact Us</span>
</div>
</a>
</li>
<li class="w3-bar">
<a href="about_us.html" style="text-decoration: none;">
<span class="w3-bar-item w3-button w3-white w3-xlarge w3-right"><i class="fa fa-angle-double-right"></i> </span>
<div class="w3-bar-item" style="margin-top: 10px;">
<span>About School One</span>
</div>
</a>
</li>
<li class="w3-bar">
<a href="faq.html" style="text-decoration: none;">
<span class="w3-bar-item w3-button w3-white w3-xlarge w3-right"><i class="fa fa-angle-double-right"></i> </span>
<div class="w3-bar-item" style="margin-top: 10px;">
<span>FAQ</span>
</div>
</a>
</li>
</ul>
<!-- notis end-->
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<div style="margin-bottom: 100px;"></div>
</body>
</html>