-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
35 lines (29 loc) · 1.12 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
<!doctype html>
<html lang="us">
<meta charset="utf-8">
<head>
<title>Fill Er' Up</title>
<link href="fillerup.css" rel="stylesheet">
</head>
<body>
<h1>Originals</h1>
<img src="sample.svg" width=120 height=130 title="no fill attribute">
<img src="sample-color.svg" width=120 height=130 title="filled red attribute">
<h1>Image #1 (no fill attribute)</h1>
<i class="icon-user"></i>
<i class="icon-user" data-fill="#ec6a38"></i>
<i class="icon-user" data-fill="#7bd454"></i>
<i class="icon-user" data-fill="#00AEEC"></i>
<i class="icon-user" data-fill="random"></i>
<h1>Image #2 (filled red)</h1>
<i class="icon-user icon-user-red"></i>
<i class="icon-user icon-user-red" data-fill="#ec6a38"></i>
<i class="icon-user icon-user-red" data-fill="#7bd454"></i>
<i class="icon-user icon-user-red" data-fill="#00AEEC"></i>
<i class="icon-user icon-user-red" data-fill="random"></i>
<h1>Image Tags</h1>
<img src="sample.svg" width=120 height=130 title="no fill attribute" data-fill="#7bd454">
<img src="sample-color.svg" width=120 height=130 title="filled red attribute" data-fill="#00AEEC">
<script src="fillerup.js"></script>
</body>
</html>