-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 831 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 831 Bytes
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
<!doctype html>
<html>
<head>
<title>Google Font Versions on Sandbox</title>
<script src="update.js" type="text/javascript"></script>
<link href="//fonts.googleapis.com/css?family=Inconsolata:400,700" type="text/css" rel="stylesheet" />
<style>
body {
font-family: "Inconsolata";
font-weight: 400;
}
body .active {
font-weight: 700;
}
</style>
</head>
<body>
Show: <a href="#" id="sandbox">Sandbox</a> - <a href="#" id="prod">Production</a>
Filter: <input type="text" id="filter" />
<button type="button" id="clear">Clear</button>
<table>
<thead>
<tr>
<th>Family</th><th>Font Version</th><th>Upstream Commit</th>
</tr>
</thead>
<tbody id="font_list"></tbody>
</table>
</body>
</html>