-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFAQ.html
150 lines (138 loc) · 4.92 KB
/
FAQ.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!--
Name:
Admin no:
Module group:
-->
<!--//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
// | | \\\ - /// | |
// | \_| ''\---/'' |_/ |
// \ .-\__ '-' ___/-. /
// ___'. .' /--.--\ `. .'___
// ."" '< `.___\_<|>_/___.' >' "".
// | | : `- \`.;`\ _ /`;.`/ - ` : | |
// \ \ `_. \_ __\ /__ _/ .-` / /
// =====`-.____`.___ \_____/___.-`___.-'=====
// `=---='
//
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// 佛祖保佑 永无BUG
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FAQ</title>
<link rel="stylesheet" href="css/templete.css" media="screen" title="no title" charset="utf-8">
<script type="text/javascript" src=js/jquery.js></script>
<!-- Chat function -->
<script type="text/javascript" src="js/Chat Function.js"></script>
<link rel="stylesheet" type="text/css" href="css/Chatbox.css">
<!-- Login function -->
<script type="text/javascript" src="js/Login Function.js"></script>
<link rel="stylesheet" type="text/css" href="css/FAQ.css">
<script>
window.onload = function() {Onload_check();}
</script>
</head>
<body>
<header>
<nav>
<a href="mainpage.html"><img src="img/logo/logo.png" alt=""></a>
<ul>
<li><a id="username"></a></li>
<li><a href="http://www.nyp.edu.sg/">Main</a></li>
<li><a href="info.html">info</a></li>
<li id="Login_button"><a href="Login Page.html">Login</a></li>
<li id="Logout_button"><a href="#" onclick="Logout_submit()">Log Out</a></li>
</ul>
</nav>
</header>
<div id="content">
<!-- data-->
<div id="wrapper">
<section>
<p>
<a href="index.html">NYP</a>
<em>>></em>
<strong>FAQ</strong>
</p>
</section>
<div id="FAQ">
<h1>Frequently Asked Questions</h1>
<br>
<br>
<p>1.Where can i contact the developers of the forum application?</p>
<p>You can head over to the "About" link at the top right hand corner or click the link <link><a href="info.html" class="here">here</link></a></p>
<br>
<br>
<p>2.Are guests allowed to post and comment in the forum?</p>
<p>Currently,only current students from Nanyang Polytechnic are allowed to post and comment in the forum</p>
<br>
<br>
<p>3.What are some of the special features of the forum?</p>
<p>Our forum has a GPA calcalator in the "info" section which users can see their GPA result <link><a href="gpaCalculator.html" class="here">"here"</link></a>.Also,the forum has online chat box that users will be able to connect with one another</p>
<br>
<br>
<p>4.How do you go back to main page of the forum?</p>
<p>Click on the Nanyang Polytechnic Forum Logo to go back to the main page.</p>
<br>
<br>
<p>5.How long does the forum operates daily?</p>
<p>It will run 24/7</p>
</div>
<br>
<footer>
<div>
<a href="http://www.nyp.edu.sg/others/copyright-and-disclaimer">Copyright and Disclaimer</a>
<a href="http://www.nyp.edu.sg/others/privacy-policy">Privacy Policy</a>
<a href="http://www.nyp.edu.sg/others/organisational-awards">Organizational Awards</a>
<hr>
<p>Nanyang Polytechnic 180 Ang Mo Kio Avenue 8 Singapore 569830 Tel:6451 5115<br>
Copyright© 2016 NYP, Singapore. All rights reserved.<br>
Best viewed at 1920 x 1080 resolution with Firefox.</p>
</div>
</footer>
<!-- Chat -->
<a onclick="Chatbox_toggler()" href="#"><img id="Chatbox_toggle" src="img/Chatbox_icon.png"></a>
<div id="Chatbox_wrapper" style="display: none;">
<div id="Chatbox_text">
<div class="Chatbox_text_BG">
<span class="Chatbox_names">Hendry</span>
<span>22/7/2016 16:55</span>
<p>Hello!</p>
</div>
<div class="Chatbox_text_BG">
<span class="Chatbox_names">Caroline</span>
<span>22/7/2016 16:55</span>
<p>Hi!</p>
</div>
<div id="Chatbox_hidden" style="visibility: hidden;"></div>
</div>
<p class="Chatbox_name_title">Online<p>
<div id="Chatbox_users">
<p class="Chatbox_names">Hendry</p>
<p class="Chatbox_names">Caroline</p>
</div>
<div id="Chatbox_field">
<form onsubmit="this.reset(); return false;">
<label style="display: none;">Message:</label><input id="Chatbox_data" required></input>
<button onclick="Chatbox_submit()">Send</button>
</form>
</div>
<div id="Chatbox_toggle_BG"></div>
</div>
</body>
</html>