-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 942 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
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fonts Demo</title>
</head>
<body>
<main class="main-content">
<div class="font-stats">
<h2>Font stats</h2>
<span class="win-stats">Windows: <strong class="percentage"></strong></span>
<span class="mac-stats">Mac: <strong class="percentage"></strong></span>
</div>
<form class="font-list-form">
<select class="font-list-filter">
<option>90</option>
<option>80</option>
<option>70</option>
<option>60</option>
<option>50</option>
<option>40</option>
<option>30</option>
<option>20</option>
<option>10</option>
<option>0</option>
</select>
</form>
<div class="font-list">
</div>
</main>
<script src="js/fonts.js"></script>
<script src="js/init.js"></script>
</body>
</html>