-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
128 lines (108 loc) · 4.43 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
<!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">
<link rel="stylesheet" type="text/css" href="assets/css/styleLinks.css">
<title>Grammar Guru | Frequently Asked Questions</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
</head>
<body id="element-with-background-image">
<!-- Nav Bar -->
<nav>
<div id="nav-1">
<h1>Grammar Guru</a>
</h1>
</div>
<div id="nav-2">
<ul>
<li>
<a href="faq.html" target="_blank">CONTACT</a>
</li>
<li>
<a href="pricing.html" target="_blank">PLANS AND PRICING</a>
</li>
<li>
<a href="faq.html" target="_blank">FAQ</a>
</li>
<li>
<a href="index.html" target="_blank">HOME</a>
</li>
</ul>
</div>
</nav>
<div id="faqContainer">
<h1>
Frequently Asked Questions
</h1>
<h2 align="center" style="color:white">
Click to see our answers
</h2>
<!-- frequently asked question container -->
<!-- <div id="ans1" class="modal">
<p>
Grammar Guru is a web-based application that was designed to check the spelling of a user input text value or the contents
of a html page and provide alternative options to assist in correcting spelling and grammatical errors.
</p>
<a href="#" rel="modal:close">Close</a>
</div>
link to open modal
<p> -->
<!-- <a href="#ans1" rel="modal:open">What is Grammar Guru?</a>
</p> -->
<div class="faqModalContent1">
<p class="ques1">
What is Grammar Guru?
</p>
<p class="ans1" style="display:none">
Grammar Guru is a web-based application that was designed to check the spelling of a user input string of text or the contents
of a html page and provide alternative options to assist in correcting spelling and grammatical errors.
<br>
<button id="faqRestore1">Restore Question</button>
</p>
</div>
<div class="faqModalContent2">
<p class="ques2">
How does Grammar Guru work?
</p>
<p class="ans2" style="display:none"; "color:blue">
Grammar Guru utilizes HTML, CSS, JAVASCRIPT, JQUERY, AJAX, NODE, NPM, BROWSERFY, CHEERIO and XML2JS to provide its users
with a unique user friendly grammar and spell checking experience.
<br>
<button id="faqRestore2">Restore Question</button>
</p>
</div>
<div class="faqModalContent3">
<p class="ques3">
What future changes or additions can I expect from Grammar Guru?
</p>
<p hidden class="ans3" style="display:none">
Here at Grammar Guru we are always looking to improve upon our user experience. Currently in scope for planned enhancements
this quarter are a upgrade of features in the GUI as well finalization of our pricing policy.
<button id="faqRestore3">Restore Question</button>
</p>
</div>
</div>
<!-- Footer -->
<footer>
<p>Grammar Guru (C) 2018. All Rights Reserved.</p>
<!--
<ul>
<li></li>
<li></li>
<li></li>
</ul>
-->
</footer>
<!-- Remember to include jQuery :) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- jQuery Modal -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<!-- JS file for application effects -->
<script type="text/javascript" src="assets/javascript/effectsLinks.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-beta/js/materialize.min.js"></script>
</body>
</html>