-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (67 loc) · 2.16 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
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>
<!-- comment -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/home.css" />
<!-- <script src="js/compounds.js"></script>
<script src="js/elements.js"></script> -->
<script defer src="js/home.js"></script>
<script defer src="js/script.js"></script>
<script defer src="js/minecraftModeTracker.js"></script>
<title>Molecule Mixer</title>
</head>
<body>
<!-- <header>
<div>
<a href="index.html">Home</a>
<a href="periodic.html">Elements and Compounds</a>
<a href="history.html">History</a>
<a href="fusion.html">Vocabulary</a>
<a href="phases.html">States</a>
<a href="bonds.html">Bonds</a>
<a href="applications.html">Applications</a>
</div>
</header> -->
<main>
<div id="center">
<h1>Welcome to Molecule Mixer!</h1>
<div id="buttons" class="is_hidden">
<div id="mixer">
<a href="periodic.html"
><input type="button" value="Molecule Mixer" onclick=""
/></a>
</div>
<div id="lessons">
<input type="button" value="Chemistry Lessons" />
</div>
</div>
<div id="hidden">
<a href="history.html"
><input type="button" value="History" onclick=""
/></a>
<a href="phases.html"
><input type="button" value="States" onclick=""
/></a>
<a href="bonds.html"
><input type="button" value="Bonds" onclick=""
/></a>
<a href="applications.html"
><input type="button" value="Applications" onclick=""
/></a>
<input type="button" value="Back" id="back" />
</div>
<p>Something else?</p>
<label class="switch">
<input id="switch" type="checkbox" />
<span class="slider"></span>
</label>
</div>
</main>
<footer>
<p>© Molecule Mixer 2022</p>
</footer>
</body>
</html>