-
Notifications
You must be signed in to change notification settings - Fork 0
/
equations.html
92 lines (80 loc) · 5.28 KB
/
equations.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
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercises in Balancing Chemistry Equations</title>
<script src="chem1.js" defer></script>
<script src="timer.js" defer></script>
<meta name="keywords" content="exercises balancing chemistry equations hydrogen-chloride ammonia nitric-acid nitrates sulphur-dioxide hydrogen-sulphide sodium-hydroxide sulphuric-acid preparation">
<meta name="author" content="Jiban Majumdar">
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<div>
<img src="myPhoto.jpg" alt="webmaster" width="150" height="200"> <br> <a href="mailto:jibanmajumdar@gmail.com">webmaster</a>
</div>
<h1 style="text-align:center;">Exercises in Balancing Chemistry Equations</h1>
<p style="font-size:115%; text-align:left;">
Writing and balancing chemistry equations generally pose a problem to a secondary school student.
Although various techniques are mentioned in the literature, apparently there seems to be no magic formula for learning equations.
They need to be practised repeatedly.
</p>
<p style="font-size:115%; text-align:left;">
An attempt has been made to give exercises in balancing chemistry equations in the following topics:
</p>
<p style="font-size:115%;color:blue;">A <i>sample equation</i> is given below:</p>
<h3>Direction:</h3>
<ul>
<li>In the following equation you will see a blank box before the symbol of each compound and element. Enter the lowest possible number in each box, or leave the box blank if you think the chemical needn't have a number (i.e. the number is equivalent to '1').</li>
<li>When you think the equation is balanced, click on the small button <span style="color:blue;"><b>"Check answer"</b></span> that appears below it.</li>
<li>If your equation is incorrect, then click the button <span style="color:blue;"><b> "Reset"</b></span> and try balancing the equation again.</li>
<li>In case you are in a hurry or are unable to balance, then click the button <span style="color:blue;"><b>"Show answer."</b></span></li>
<li>If you want to know the time taken (minutes:seconds) to balance a chemical equation, you click the <span style="color:blue;"><b>"Start"</b></span> button and after balancing the equation, click the <span style="color:blue;"><b>"Stop"</b></span>button. Once, you have noted the time, click the <span style="color:blue;"><b>"Reset Timer"</b></span> button.
</li>
</ul>
<form name="equations">
<h2>Preparation of Ammonia:</h2>
<ul>
<li>When Ammonium Chloride is heated with slaked lime (Calcium hydroxide), Ammonia gas is formed:</li>
<p style="font-size:125%; text-align:center;">
<input style="font-size: 18px; text-align: center" size="2" name="q1a"> NH<sub>4</sub>Cl +
<input style="font-size: 18px; text-align:center" size="2" name="q1b"> Ca(OH)<sub>2</sub>
<font face="symbol">→</font>
<input style="font-size: 18px; text-align: center" size="2" name="q1c"> CaCl<sub>2</sub> +
<input style="font-size:18px; text-align:center" size="2" name="q1d"> NH<sub>3</sub> +
<input style="font-size:18px; text-align:center" size="2" name="q1e"> H<sub>2</sub>O
</p>
<p style="font-size:125%; text-align:center;">
<input onclick="check(1,'Preparation of Ammonia',2,1,1,2,2,0,'NH<sub>4</sub>Cl + Ca(OH)<sub>2</sub>','CaCl<sub>2</sub> + NH<sub>3</sub>+H<sub>2</sub>O');" type="button" value="Check answer">
<input type="reset" value="Reset">
<input onclick="show(1,'Preparation of Ammonia',2,1,1,2,2,0,'2NH<sub>4</sub>Cl + Ca(OH)<sub>2</sub>','CaCl<sub>2</sub>+2NH<sub>3</sub> +2H<sub>2</sub>O');" type="button" value="Show answer">
</p>
<p style="font-size:115%; text-align:center;">
<span style="color:blue;"><b>Time Taken:</b></span><span class="timer" id="timer1">00:00</span>
<button type="button" onclick="startTimer('timer1')">Start</button>
<button type="button" onclick="stopTimer('timer1')">Stop</button>
<button type="button" onclick="resetTimer('timer1')">Reset Timer</button>
</p>
</ul>
</form>
<h3>Note:</h3>
<p>If you get no response after clicking 'Check answer' or 'Show answer', your browser has disabled running this program. Enable it by clicking below the 'address bar' and follow the instructions.</p>
<p style="font-size:115%;color:blue;">Click a topic below to open a separate window.</p>
<ul>
<li><a href="hydrogen-chloride.html">Hydrogen Chloride</a></li>
<li><a href="chlorine.html">Chlorine</a></li>
<li><a href="ammonia.html">Ammonia</a></li>
<li><a href="nitric-acid.html">Nitric Acid</a></li>
<li><a href="sulphur-dioxide.html">Sulphur Dioxide</a></li>
<li><a href="hydrogen-sulphide.html">Hydrogen Sulphide</a></li>
<li><a href="sulphuric-acid.html">Sulphuric Acid</a></li>
<li><a href="sodium-hydroxide.html">Sodium Hydroxide</a></li>
</ul>
<a href="index.html">Home Page</a>
<hr style="color:blue;">
<address>
For feedback, please e-mail to: <a href="mailto:jibanmajumdar@gmail.com">jibanmajumdar@gmail.com</a>
</address>
</body>
</html>