-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.13 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Periodic Table of GitHub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="data.js"></script>
<script src="main.js"></script>
<div id="container">
<div id="title">The Periodic Table of GitHub</div>
<span class="middle">Because naming is hard.</span>
<div id="center">
<div id="periodic-table">
<div style="grid-column:6/11; grid-row:3;">Click an element.</div>
</div>
<div id="element-card">
<div id="cardNumber"></div>
<div id="cardSymbol"></div>
<div id="cardLink"></div>
<div id="cardStars"></div>
<div id="cardBlurb"></div>
</div>
</div>
<div id="madeby">
<span>Last updated: May 5, 2018 by</span>
<a href="http://github.com/ablakey/">Andrew Blakey</a>
</div>
</div>
</body>
</html>