-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquiz.html
More file actions
26 lines (19 loc) · 904 Bytes
/
quiz.html
File metadata and controls
26 lines (19 loc) · 904 Bytes
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
<!DOCTYPE html>
<html>
<div id = 'header'></div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner2">
<p>
Check out the quiz app that is very dynamic. You can even add notes to pages as you browse through questions. It was built with Backbone as a Single Page Application.
It is collection of questions with question model. Notes also has collection and model. It is a representation of real world quiz through objects in programming. Json is the datasource for questions, notes.
</p>
<iframe src="https://googledrive.com/host/0Bz-3SlNGlz3ncW5wWEFxZkNNaWs/quiz.html" width = "1000px" height = "800px" left = " 120px"></iframe>
</section>
</div>
</html>
<script src="javascripts/jquery-1.8.3.min.js"></script>
<script>
$("#header").load("header.html");
$("#footer").load("footer.html");
</script>