-
Notifications
You must be signed in to change notification settings - Fork 0
/
statement.html
244 lines (228 loc) · 8.02 KB
/
statement.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Bunny Kingdom👑</title>
<!-- Add a icon to the website -->
<link rel="icon" href="Images/bunny.ico" />
<!-- Add font style from google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Add Bootstrp -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<!-- link to css -->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="css/statement.css" />
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="">🐰</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="assignment.html">Assignment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="me.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">About Bunny</a>
</li>
<li class="nav-item">
<a class="nav-link" href="statement.html">Q&A</a>
</li>
<li class="nav-item">
<a class="nav-link" href="feedback.html">Feedback</a>
</li>
</ul>
</div>
</nav>
<!-- the start of Q & A session -->
<h1>Q & A</h1>
<p>
If you have more ideas <br />
Feel free to contact me!
</p>
<hr />
<div class="qa-section">
<!-- the start of statement -->
<div class="statement-section part" id="statement">
<h2>Q: What is the mission statement for your site?</h2>
<p>
A: Bunny Kingdom is a website offering rabbits’ knowledge for the
people who want to pet a bunny or have been a breeder, providing them
information about the preparation of petting a bunny, how to choose
their bunnies, what breeds of bunnies are more suitable for them, etc.
This website could help them get to know bunnies’ world better. Unlike
other pet websites, which focus more on dogs or cats, Bunny Kingdom is
made by a bunny lover, and only focus on bunnies.
</p>
</div>
<!-- the end of statement -->
<hr class="between-hr" />
<!-- the start of goals list -->
<div class="goals-section part">
<h2>Q: What are your goals for this site?</h2>
<ol>
<li>
Figure out what users need to improve the quality of the content in
the website.
</li>
<li>
Do more research about the provided information to increase the
website’s credibility.
</li>
<li>Add more practical knowledge of bunny petting in the future.</li>
<li>
Integrate multiple display modes to increase the enjoyment of the
website.
</li>
<li>
Seek for a convenient way for users to get the content that they
want more easily.
</li>
<li>
Consistently improve the visual style to make the web page more
attractable.
</li>
<li>
Improve the structure and readability of the codes to increase the
further maintainability.
</li>
</ol>
</div>
<!-- the end of goals list -->
<hr class="between-hr" />
<!-- the start of the site map -->
<div class="site-map-section part" id="site-map">
<h2>Q: Do you have a Site Map?</h2>
<p>Yeah, this is the map site, and I will update it consistently.</p>
<table class="site-map-table">
<tr>
<th><a class="light-link" href="index.html">Welcome page</a></th>
<th><a class="light-link" href="index.html">About Bunnies</a></th>
<th>
<a class="light-link" href="index.html#behavior"
>Image Map Pages</a
>
</th>
<td>
<a class="light-link" href="behavior-pages/loafing.html"
>Loafing</a
>
</td>
<td><a class="light-link" href="index.html#shop">Shopping</a></td>
</tr>
<tr>
<td><a class="light-link" href="assignment.html">Assignment</a></td>
<td><a class="light-link" href="index.html#pros">Pros</a></td>
<td>
<a class="light-link" href="behavior-pages/binky.html">Binky</a>
</td>
<td>
<a class="light-link" href="behavior-pages/purring.html"
>Purring</a
>
</td>
</tr>
<tr>
<td><a class="light-link" href="me.html">About Me</a></td>
<td>
<a class="light-link" href="index.html#playing"
>Play with Bunny</a
>
</td>
<td>
<a class="light-link" href="behavior-pages/ear-shaking.html"
>Ear Shaking</a
>
</td>
<td>
<a class="light-link" href="behavior-pages/sprawling.html"
>Sprawling</a
>
</td>
</tr>
<tr>
<td><a class="light-link" href="statement.html">Q&A</a></td>
<td>
<a class="light-link" href="index.html#breeds"
>Breeds in Australia</a
>
</td>
<td>
<a class="light-link" href="behavior-pages/flopping.html"
>Flopping</a
>
</td>
<td>
<a class="light-link" href="behavior-pages/zooming.html"
>Zooming</a
>
</td>
</tr>
<tr>
<td><a class="light-link" href="feedback.html">Feedback</a></td>
<td>
<a class="light-link" href="index.html#behavior"
>Bunnies' Behavior</a
>
</td>
<td>
<a class="light-link" href="behavior-pages/grooming.html"
>Grooming</a
>
</td>
<td>
<a class="light-link" href="index.html#choose"
>Pick up your bunny</a
>
</td>
</tr>
</table>
</div>
<!-- the end of the site map -->
</div>
<!-- the end of Q & A session -->
</body>
</html>