-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·62 lines (51 loc) · 1.78 KB
/
index.html
File metadata and controls
executable file
·62 lines (51 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title> MATHLAB </title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<navbar>
<ul>
<li style="float:left"><a class="active title" href="#">mathlab</a></li>
<li><a href="#saved">saved-coming soon</a></li>
<li><a href="#topics">topics</a></li>
<li><a href="#about">about</a></li>
</ul>
</navbar>
<div class = "grid-container">
<a id = "simple" class = "category" href="categories/simple.html">
<div id = "poop">
<p>Simple problems</p>
</div>
</a>
<a class = "category" href="categories/addSubFractions.html">
<div>
<p>Add & Subtract Fractions</p>
</div>
</a>
<a class = "category" href="categories/multFractions.html">
<div>
<p>Multiply Fractions</p>
</div>
</a>
<a class = "category" href="categories/divFractions.html">
<div>
<p>Divide Fractions</p>
</div>
</a>
<a class = "category" href="categories/equationsOneVariable.html">
<div>
<p>Equations with One Variable</p>
</div>
</a>
<a class = "category" href="categories/equationsTwoVariable.html">
<div>
<p>Equations with Two Variables</p>
</div>
</a>
</div>
<!-- <script type="text/javascript" src="scripts.js"></script> -->
</body>
</html>