-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.html
More file actions
75 lines (72 loc) · 3.8 KB
/
math.html
File metadata and controls
75 lines (72 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./math.css">
</head>
<body>
<!-- <div class="content">
<h2>Fun Math for Kids</h2>
<p>Explore the world of math through a variety of practice modules. Set daily goals, track progress, and stay
motivated.</p>
<ul>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Numbers-and-Operations"
title="Numbers and Operations"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/716wm1387.png?x-oss-process=image/format,webp"><span>Numbers
and Operations</span></a></li>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Geometry" title="Geometry"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/ygbac41np.png?x-oss-process=image/format,webp"><span>Geometry</span></a>
</li>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Logic-and-Patterns"
title="Logic and Patterns"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/1g3mimmuc.png?x-oss-process=image/format,webp"><span>Logic
and Patterns</span></a></li>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Problem-Solving" title="Problem Solving"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/526cv57lh.png?x-oss-process=image/format,webp"><span>Problem
Solving</span></a></li>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Measurement-and-Data"
title="Measurement and Data"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/5amx0bmgq.png?x-oss-process=image/format,webp"><span>Measurement
and Data</span></a></li>
<li><a href="https://www.cretaclass.com/en-in/math-corner/Attention-and-Memory"
title="Attention and Memory"><img
src="https://conan-online.cretacontent.com/conan-oss-resource/arxfmno2x.png?x-oss-process=image/format,webp"><span>Attention
and Memory</span></a></li>
</ul>
</div> -->
<div class="container">
<h1>Fun Math for Kids</h1>
<p>Explore the world of math through a variety of practice modules. Set daily goals, track progress, and stay motivated.</p>
<div class="grid">
<div class="card">
<a href="numbersense.html">
<img src="./picture/716wm1387.webp" alt="Numbers and Operations">
<h3>Numbers and Operations</h3>
</a>
</div>
<div class="card">
<img src="./picture/ygbac41np.webp" alt="Geometry">
<h3>Geometry</h3>
</div>
<div class="card">
<img src="./picture/1g3mimmuc.webp" alt="Logic and Patterns">
<h3>Logic and Patterns</h3>
</div>
<div class="card">
<img src="./picture/526cv57lh.webp" alt="Problem Solving">
<h3>Problem Solving</h3>
</div>
<div class="card">
<img src="./picture/5amx0bmgq.webp" alt="Measurement and Data">
<h3>Measurement and Data</h3>
</div>
<div class="card">
<img src="./picture/arxfmno2x.webp" alt="Attention and Memory">
<h3>Attention and Memory</h3>
</div>
</div>
</div>
</body>
</html>