-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (74 loc) · 3.72 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
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script src="script.js" charset="utf-8"></script>
</head>
<body>
<!-- Start of first page -->
<div data-role="page" id="main">
<!--<div data-role="content">-->
<!-- <table data-role="table" class="ui-responsive table-stroke" id="jeopardyTable"> -->
<table>
<thead>
<tr>
<th>Bibel</th>
<th>Sport</th>
<th>Naturfag</th>
<th>Eldre historie</th>
<th>Musikk</th>
</tr>
</thead>
<tbody>
<tr>
<td><a id=bibel200 href="#qPage" data-transition="pop" class="table-link">200</a></td>
<td><a id=sport200 href="#qPage" data-transition="pop" class="table-link">200</a></td>
<td><a id=nfag200 href="#qPage" data-transition="pop" class="table-link">200</a></td>
<td><a id=historie200 href="#qPage" data-transition="pop" class="table-link">200</a></td>
<td><a id=musikk200 href="#qPage" data-transition="pop" class="table-link">200</a></td>
</tr>
<tr>
<td><a id=bibel400 href="#qPage" data-transition="pop" class="table-link">400</a></td>
<td><a id=sport400 href="#qPage" data-transition="pop" class="table-link">400</a></td>
<td><a id=nfag400 href="#qPage" data-transition="pop" class="table-link">400</a></td>
<td><a id=historie400 href="#qPage" data-transition="pop" class="table-link">400</a></td>
<td><a id=musikk400 href="#qPage" data-transition="pop" class="table-link">400</a></td>
</tr>
<tr>
<td><a id=bibel600 href="#qPage" data-transition="pop" class="table-link">600</a></td>
<td><a id=sport600 href="#qPage" data-transition="pop" class="table-link">600</a></td>
<td><a id=nfag600 href="#qPage" data-transition="pop" class="table-link">600</a></td>
<td><a id=historie600 href="#qPage" data-transition="pop" class="table-link">600</a></td>
<td><a id=musikk600 href="#qPage" data-transition="pop" class="table-link">600</a></td>
</tr>
<tr>
<td><a id=bibel800 href="#qPage" data-transition="pop" class="table-link">800</a></td>
<td><a id=sport800 href="#qPage" data-transition="pop" class="table-link">800</a></td>
<td><a id=nfag800 href="#qPage" data-transition="pop" class="table-link">800</a></td>
<td><a id=historie800 href="#qPage" data-transition="pop" class="table-link">800</a></td>
<td><a id=musikk800 href="#qPage" data-transition="pop" class="table-link">800</a></td>
</tr>
<tr>
<td><a id=bibel1000 href="#qPage" data-transition="pop" class="table-link">1000</a></td>
<td><a id=sport1000 href="#qPage" data-transition="pop" class="table-link">1000</a></td>
<td><a id=nfag1000 href="#qPage" data-transition="pop" class="table-link">1000</a></td>
<td><a id=historie1000 href="#qPage" data-transition="pop" class="table-link">1000</a></td>
<td><a id=musikk1000 href="#qPage" data-transition="pop" class="table-link">1000</a></td>
</tr>
</tbody>
</table>
<!--</div>-->
</div><!-- /page -->
<!-- Start of second page -->
<div data-role="page" id="qPage">
<!--<div data-role="content">-->
<a href="#main" id="question">Back to foo</a>
<!--</div><!-- /content -->
</div><!-- /page -->
</body>
</html>