-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (45 loc) · 1.71 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<title>SVG Icon Polyfill</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="item">
<svg role="img" aria-label="Golf clubs in a bag" class="icon icon-add-to-my-bag">
<title>Golf clubs in a bag</title>
<use xlink:href="img/svg-defs.svg#icon-add-to-my-bag"></use>
</svg>
Add to my bag
</div><!--/.item-->
<div class="item">
<svg role="img" aria-label="Golf bag icon" class="icon icon-add-to-my-wishlist">
<title>Golf bag icon</title>
<use xlink:href="img/svg-defs.svg#icon-add-to-my-wishlist"></use>
</svg>
Add to my Wishlist
</div><!--/.item-->
<div class="item">
<svg role="img" aria-label="An inbox icon" class="icon icon-archive">
<title>An inbox with an arrow pointing down</title>
<use xlink:href="img/svg-defs.svg#icon-archive"></use>
</svg>
Archive
</div><!--/.item-->
<div class="item">
<svg role="img" aria-label="A cake icon" class="icon icon-birthday">
<title>A piece of cake with a candle in it</title>
<use xlink:href="img/svg-defs.svg#icon-birthday"></use>
</svg>
Birthday
</div><!--/.item-->
<div class="item">
<svg role="img" aria-label="A trophy icon" class="icon icon-tt-item-contest-sweep">
<title>A trophy</title>
<use xlink:href="img/svg-defs.svg#icon-tt-item-contest-sweep"></use>
</svg>
Contests & Sweepstakes
</div><!--/.item-->
<script src="js/svg-icon-polyfill.min.js" async></script>
</body>
</html>