-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
52 lines (46 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="./styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js" integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+"
crossorigin="anonymous"></script>
</head>
<body>
<script>
$(document).ready(function () {
//jquery code goes here....
$('#content').load('./content.html');
});
</script>
<h1>FAQ Sections</h1>
<div class="nav">
<h2>
<a href="#training">
Training
</a>
<a href="#setup">
Setup
</a>
<a href="#app">
App
</a>
<a href="#hardware">
Hardware
</a>
<a href="#teamdisplay">
Group Display
</a>
<a href="#troubleshooting">
Troubleshooting
</a>
</h2>
</div>
<hr>
<div id="content"></div>
<a href="#top" id="gototop">
<i class="fas fa-arrow-up"></i>
</a>
</body>
</html>