-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddition-exercise.html
78 lines (78 loc) · 3.16 KB
/
addition-exercise.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="description" content="Prefix and postfix notations."/>
<meta name="keywords" content="education, technology, mathematics, programming, addition"/>
<meta name="author" content="Shiv Shankar Dayal" />
<meta name="copyright" content="Shiv Shankar Dayal" />
<meta name="robots" content="index,follow"/>
<meta http-equiv="expires" content="86400"/>
<meta name="viewport" content="width=21cm, initial-scale=1">
<title>Humans, education and technology</title>
<link rel="stylesheet" href="css/material-components-web.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/mdb.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/material-components-web.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'></script>
<script>
MathJax.Hub.Config({
config: ["MMLorHTML.js"],
jax: ["input/TeX","input/MathML","input/AsciiMath","output/HTML-CSS","output/NativeMML", "output/PreviewHTML"],
extensions: ["tex2jax.js","mml2jax.js","asciimath2jax.js","MathMenu.js","MathZoom.js", "fast-preview.js", "AssistiveMML.js", "a11y/accessibility-menu.js"],
TeX: {
extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
}
});
</script>
</head>
<body class="mdc-typography">
<page size="A4">
<header class="mdc-toolbar mdc-theme--secondary-dark">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start">
<span class="mdc-toolbar__title"><a href="/" class="menu-anchor">Home</a></span>
<span class="mdc-toolbar__title"><a href="toc.html" class="menu-anchor">Table of Contents</a></span>
</section>
</div>
</header>
<div class="margins">
<section>
<h2>Addition Exercise</h2>
<table class="table table-responsive table-striped">
<tbody>
<tr>
<td class="ml-10">\(0 + 5 = ?\)</td>
<td class="ml-10">\(0 + 6 = ?\)</td>
<td class="ml-10">\(0 + 7 = ?\)</td>
<td class="ml-10">\(0 + 8 = ?\)</td>
<td class="ml-10">\(0 + 9 = ?\)</td>
</tr>
<tr>
<td class="ml-10">\(1 + 5 = ?\)</td>
<td class="ml-10">\(1 + 6 = ?\)</td>
<td class="ml-10">\(1 + 7 = ?\)</td>
<td class="ml-10">\(1 + 8 = ?\)</td>
<td class="ml-10">\(1 + 9 = ?\)</td>
</tr>
<tr>
<td class="ml-10">\(2 + 5 = ?\)</td>
<td class="ml-10">\(2 + 6 = ?\)</td>
<td class="ml-10">\(2 + 7 = ?\)</td>
<td class="ml-10">\(2 + 8 = ?\)</td>
<td class="ml-10">\(2 + 9 = ?\)</td>
</tr>
</tbody>
</table>
</section>
</div>
<div style="clear-both"></div>
<footer class="margins">
<a href="addition.html" class="mdc-button mdc-theme--secondary-light mdc-button--raised fl">Previous</a>
<a href="addition-exercise.html" class="mdc-button mdc-theme--secondary-light mdc-button--raised fr">Next</a>
</footer>
</page>
</body>
</html>