-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.php
More file actions
89 lines (89 loc) · 4.33 KB
/
quiz.php
File metadata and controls
89 lines (89 loc) · 4.33 KB
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
<?php include("include/header.php"); ?>
<div class="article">
<h2>Are you a master of BattleTech lore?</h2>
<p>The BattleTech gaming universe is over 30 years old and encompasses over 1000 years of alternate history across
thousands of star systems. For those who want to learn more or test their knowledge of the Inner Sphere, please
participate in this short quiz below. If you are stumped, click the button next to each question to reveal the answer.
Good luck!</p>
<br>
<div ng-app="quizApp" class="quiz" align="center">
<div ng-controller="mainCtrl">
<p>When did Natasha Kerensky, the famed Black Widow, die?</p><label>Your Answer!</label><input type="text"/>
<button ng-click="widow()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="secondCtrl">
<p>When did the Battle of Tukayyid begin?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="tukayyid()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="thirdCtrl">
<p>What was the first Great House to be founded?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="marik()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="fourthCtrl">
<p>What was the name of the first BattleMech?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="mackie()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="fifthCtrl">
<p>On what planet were the Clans first created?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="strana()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="sixthCtrl">
<p>Who was the First Prince of the Federated Suns in 3012?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="ian()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="seventhCtrl">
<p>Who founded the Draconis Combine?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="shiro()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="eighthCtrl">
<p>Who planet was the largest BattleMech producer in the Lyran Commonwealth?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="hesperus()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="ninthCtrl">
<p>What is the capital world of the Capellan Confederation?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="sian()">Click here to test your answer!</button>
</div>
<br>
<div ng-controller="tenthCtrl">
<p>When was the Star League founded?</p>
<label>Your Answer!</label>
<input type="text"/>
<button ng-click="star()">Click here to test your answer!</button>
</div>
<br>
</div>
</div>
<?php include("include/footer.php"); ?>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous">
</script>
<script src="vendors/angular.js" type="text/javascript"></script>
<script src="scripts/app.js" type="text/javascript"></script>
</body>
</html>