-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (63 loc) · 3.81 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App Wireframe</title>
<style>
header { text-align: center; }
section, header { width: 80%; max-width: 800px; position: relative; left: 50%; transform: translateX(-50%); border: black 1px solid ; margin: 10px; padding: 10px; }
</style>
</head>
<body>
<header>
<h1>Quiz App</h1>
</header>
<section>
<h2>Thoughts</h2>
<p>My goal which is mostly implemented in the main repo is to have the page serve as a trivia app that can dynamically load from a number of quizzes.
I have created questions from the owl and planets quizzes here that will be used to create quizzes that the user can select from on the home page.
</p>
<p>Since there is no meaningful page interaction or navigation in the wireframes, I have provided links to the various views</p>
</section>
<section>
<h2>Back of Napkin Designs</h2>
<ul>
<li>Home page: <a href="https://twa022.github.io/quiz-app-wireframes/images/home.jpg">https://twa022.github.io/quiz-app-wireframes/images/home.jpg</a></li>
<li>Question page: <a href="https://twa022.github.io/quiz-app-wireframes/images/question.jpg">https://twa022.github.io/quiz-app-wireframes/images/question.jpg</a></li>
<li>Correct Answer: <a href="https://twa022.github.io/quiz-app-wireframes/images/correct.jpg">https://twa022.github.io/quiz-app-wireframes/images/correct.jpg</a></li>
<li>Question page: <a href="https://twa022.github.io/quiz-app-wireframes/images/incorrect.jpg">https://twa022.github.io/quiz-app-wireframes/images/incorrect.jpg</a></li>
<li>End / score page: <a href="https://twa022.github.io/quiz-app-wireframes/images/end.jpg">https://twa022.github.io/quiz-app-wireframes/images/end.jpg</a></li>
</ul>
</section>
<section>
<h2>Wireframes</h2>
<ul>
<li>Home page: <a href="https://twa022.github.io/quiz-app-wireframes/home.html">https://twa022.github.io/quiz-app-wireframes/home.html</a></li>
<li>Question page: <a href="https://twa022.github.io/quiz-app-wireframes/question.html">https://twa022.github.io/quiz-app-wireframes/question.html</a></li>
<li>Correct Answer: <a href="https://twa022.github.io/quiz-app-wireframes/correct-answer.html">https://twa022.github.io/quiz-app-wireframes/correct-answer.html</a></li>
<li>Question page: <a href="https://twa022.github.io/quiz-app-wireframes/incorrect-answer.html">https://twa022.github.io/quiz-app-wireframes/incorrect-answer.html</a></li>
<li>End / score page: <a href="https://twa022.github.io/quiz-app-wireframes/end.html">https://twa022.github.io/quiz-app-wireframes/end.html</a></li>
</ul>
</section>
<section>
<h2>Assets</h2>
<ul>
<li>Image Assets (backgrounds for the home page and the two quizzes): <a href="https://github.com/twa022/quiz-app-wireframes/tree/master/assets">https://github.com/twa022/quiz-app-wireframes/tree/master/assets</a></li>
<li>Using fonts from:</li>
<ul>
<li>Source Sans Pro: <a href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap">https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap</a></li>
<li>Font Awesome: <a href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">https://use.fontawesome.com/releases/v5.4.1/css/all.css</a></li>
</ul>
</ul>
</section>
<section>
<h2>Quiz Questions</h2>
<h3>Questions are stored in a JSON file. correctAnswer is the index of the correct answer in the answers array.</h3>
<ul>
<li>Owl Quiz: <a href="https://twa022.github.io/quiz-app-wireframes/questions/owl.json">https://twa022.github.io/quiz-app-wireframes/questions/owl.json</a></li>
<li>Planets Quiz: <a href="https://twa022.github.io/quiz-app-wireframes/questions/owl.json">https://twa022.github.io/quiz-app-wireframes/questions/owl.json</a></li>
</ul>
</section>
</body>
</html>