-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefinitions.html
162 lines (160 loc) · 5.95 KB
/
definitions.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Chemistry 11 | Definitions</title>
<!-- Stylesheets -->
<link rel="stylesheet" , type="text/css" , href="css/index.css" />
<link rel="shortcut icon" href="./images/logos/favicon.png" />
<!-- Javascript -->
<script
defer
src="https://kit.fontawesome.com/c7434d4388.js"
crossorigin="anonymous"
></script>
<!-- open graph protocol -->
<meta
property="og:url"
content="https://chemistry-11.firebaseapp.com/"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Chemistry 11" />
<meta
property="og:description"
content="Easily study and review Grade 11 Chemistry topics and concepts."
/>
<meta
property="og:image"
content="https://firebasestorage.googleapis.com/v0/b/chemistry-11.appspot.com/o/banner.png?alt=media&token=69431942-52a1-4da1-a705-93c3e2394c8d"
/>
<meta property="og:image:type" content="image/png" />
<mega property="og:image:width" content="1920" />
<meta property="og:image:height" content="1080" />
<!-- twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://chemistry-11.firebaseapp.com/"
/>
<meta property="twitter:title" content="Chemistry 11" />
<meta
property="twitter:description"
content="Easily study and review Grade 11 Chemistry topics and concepts."
/>
<meta
property="twitter:image"
content="https://firebasestorage.googleapis.com/v0/b/chemistry-11.appspot.com/o/banner.png?alt=media&token=69431942-52a1-4da1-a705-93c3e2394c8d"
/>
</head>
<body>
<div class="navbar sticky">
<nav>
<a href="index.html" style="margin: 0% 2%;"
><img src="./images/logos/favicon.png"
/></a>
<a href="JavaScript:void(0)" id="burger"
><i class="fas fa-bars"></i
></a>
<ul class="navbar-links">
<li>
<a href="index.html" class="hover-underline-animation"
>Home</a
>
</li>
<li>
<a href="definitions.html" class="selected-tab"
>Definitions</a
>
</li>
<li>
<a
href="periodictable.html"
class="hover-underline-animation"
>Periodic Table</a
>
</li>
<li>
<a
href="polyatomic.html"
class="hover-underline-animation"
>Polyatomic Ions</a
>
</li>
<li>
<a
href="solubility.html"
class="hover-underline-animation"
>Solubility Rules</a
>
</li>
<li>
<a
href="formulas.html"
class="hover-underline-animation"
>Formulas</a
>
</li>
<li>
<a href="exam.html" class="hover-underline-animation"
>Practice Exams</a
>
</li>
<li>
<a
href="https://firebasestorage.googleapis.com/v0/b/chemistry-11.appspot.com/o/nelsonchemistry11u.pdf?alt=media&token=b52fbaf7-0251-4bc5-bc3c-f081bff30b06"
target="_blank"
class="hover-underline-animation"
>Textbook</a
>
</li>
<li>
<a href="feedback.html" style="margin: 0% 1%;"
><button>Feedback</button></a
>
</li>
</ul>
</nav>
</div>
<div id="filter-div">
<input
type="text"
placeholder="e.g. Atomic Radius"
id="filter"
onkeyup="filter()"
/>
</div>
<div id="definitions-cards-container"></div>
<script src="js/definitions.js"></script>
<script src="js/nav.js"></script>
</body>
<footer>
<a href="https://github.com/RyanL123" target="_blank"
><img
src="./images/logos/GitHubLogo.png"
title="GitHub"
height="32px"
width="32px"
alt="github"
/></a>
<a href="https://www.instagram.com/ryan.lllllll/" target="_blank"
><img
src="./images/logos/InstagramLogo.png"
title="Instagram"
height="32px"
width="32px"
alt="instagram"
/></a>
<a
href="https://discordapp.com/users/231592825349734402"
target="_blank"
><img
src="./images/logos/DiscordLogo.png"
title="Discord"
height="32px"
width="32px"
alt="discord"
/></a>
</footer>
</html>