-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecondQuestion.html
More file actions
58 lines (42 loc) · 2.57 KB
/
Copy pathsecondQuestion.html
File metadata and controls
58 lines (42 loc) · 2.57 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
<html>
<link rel="stylesheet" type="text/css" href="index.css">
<body background="FadedTreasureMap.jpg">
<form id = "firstQustion" name = "firstQuestion" method="get" action="foundGold.html" autocomplete="off" >
<div class="motivation"> Now solve this question </div>
<!-- First fraction, unlike !-->
<div class="boxedNumeratorOneUnlike"> 1 </div>
<hr class="barOneUnlike" noshade size=7 width=120px>
<div class="boxedDenominatorOneUnlike"> 3 </div>
<img id="plus" src="plus.svg" height="40" width="40" style= "position:absolute; top:385px; left:300px">
<!-- Second fraction, unlike !-->
<div class="boxedNumeratorTwoUnlike"> 1 </div>
<hr class="barTwoUnlike" noshade size=7 width=120px>
<div class="boxedDenominatorTwoUnlike"> 2 </div>
<img src="equalsign.svg" height="40" width="40" style="position:absolute; top:385px; left:525px">
<!-- First unlike fraction that needs to filled out !-->
<input type="textarea" id="answerNumOneUnlike"></input>
<div style="visibility:hidden" id="numOneErrorUnlike"> Did you make sure to change the numerator? </div>
<hr class="barThreeUnlike" noshade size=7 width=120px>
<input type="textarea" id="answerDenOneUnlike"></input>
<div style="visibility:hidden" id="denOneErrorUnlike"> Did you make sure to find a common denominator? </div>
<img id="plus" src="plus.svg" height="40" width="40" style= "position:absolute; top:385px; left:730px">
<!--Second unlike fraction that needs to be filled out !-->
<input type="textarea" id="answerNumTwoUnlike"></input>
<div style="visibility:hidden" id="numTwoErrorUnlike"> Did you make sure to change the numerator? </div>
<hr class="barFourUnlike" noshade size=7 width=120px>
<input type="textarea" id="answerDenTwoUnlike"></input>
<div style="visibility:hidden" id="denTwoErrorUnlike"> Did you make sure to find a common denominator? </div>
<img src="equalsign.svg" height="40" width="40" style="position:absolute; top:385px; left:950px">
<!-- Final Answer -->
<input type="textarea" id="finalAnswerNumUnlike"></input>
<div style="visibility:hidden" id="finalNumErrorUnlike"> Did you make sure to change the numerator? </div>
<hr class="barFiveUnlike" noshade size=7 width=120px>
<input type="textarea" id="finalAnswerDenUnlike"></input>
<div style="visibility:hidden" id="finalDenErrorUnlike"> Did you make sure to find a common denominator? </div>
<div style="visibility:hidden" id="done"> You're done! </div>
<script src="firstUnlike.js"> </script>
<script src="secondUnlike.js"> </script>
<script src="finalUnlike.js"> </script>
<button id="submitQuestion" type="submit" value="submit">Go</button>
</body>
</html>