-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 859 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Periodic Table JSON data</title>
<link rel="stylesheet" href="./assets/css/styles.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
<div id="wrapper">
<div id="x_numbers"></div>
<div id="y_numbers"></div>
<div id="wrap_for_liquid">
<div id="liquid"></div>
</div>
<div id="wrapper_for_pink">
<div id="solid"></div>
</div>
<div id="gas"></div>
<div id="wrapper_for_text">
<div class="long_text">*Lanthanoids<span class="star">*</span></div>
<div class="long_text">**Actinoids<span class="star">**</span></div>
</div>
<div id="neutral"></div>
</div>
<!-- end of wrapper id-->
<script type="text/javascript" src="./assets/scripts/app.js"></script>
</body>
</html>