-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
37 lines (25 loc) · 920 Bytes
/
test.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
<html>
<head>
<meta name="svg-icons" content="/static/round.svg" id="round-icon">
<meta name="svg-icons" content="/static/pkmn.svg" id="pkmn-icon">
<link rel="stylesheet" href="/static/style.css"/>
<link rel="stylesheet" href="/node_modules/qunitjs/qunit/qunit.css"/>
<script src="/node_modules/qunitjs/qunit/qunit.js"></script>
<script src="/testem.js"></script>
<script src="/index.js"></script>
</head>
<body>
<h1>Round Icons</h1>
<p>(Hover over me!)</p>
<round-icon type="refresh"></round-icon>
<round-icon type="close"></round-icon>
<round-icon type="compass"></round-icon>
<round-icon type="menu"></round-icon>
<hr>
<h1>Pokemon Icons</h1>
<pkmn-icon type="bulbasaur"></pkmn-icon>
<pkmn-icon type="charmander"></pkmn-icon>
<pkmn-icon type="squirtle"></pkmn-icon>
<pkmn-icon type="abra"></pkmn-icon>
</body>
</html>