-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (44 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<title>html</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 style="text-align: center; letter-spacing: 2px;">-------kids Mind Game-------</h1>
<div id="userInput">
<input type="text" id="firstInput">
<input type="text" id="operator" >
<input type="text" id="secondInput">
<p id="equals">=</p>
<input type="text" id="userAns" placeholder="Your Ans">
</div>
<div id="divBtn">
<button id="btn">check ans</button>
</div>
<div id="scoreDiv">
<h2 id="scoreCard">Score:-</h2>
<input type="text" id="showScore">
<div id="calculateDiv">
<p>Need Help! :-</p>
<button id="showHelp">Get Ans</button>
<input type="text" id="showResult" placeholder="click on Get Ans">
</div>
</div>
<div id="correctDiv">
<h2 id="correctCard">Correct:-</h2>
<input type="text" id="showNoCorrect">
</div>
<div id="wrongDiv">
<h2 id="wrongCard">Wrong:-</h2>
<input type="text" id="showNoWrong">
</div>
<div id="info">
<h3 id="infoTitle">how to play</h3>
<P id="infoParagraph"> Write the correct answer of the above operation on Your Ans box,then click Check Ans button. If you put correct answer the you get 5 score but for wrong answer -3 will subsctracted from main score. If you need some helpregarding question then click on Need Help! button.
</P>
<p id="infoParagraph1">created by: Makaradhwaja Behera, CSE 5th sem Student</p>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>