-
Notifications
You must be signed in to change notification settings - Fork 4
/
example.html
executable file
·39 lines (37 loc) · 1.93 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Local Icons Example Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="icons/android/android.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/arrow-right/arrow-right.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/apple/apple.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/beer/beer.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/address-book/address-book.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/address-book-o/address-book-o.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/git/git.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/git-square/git-square.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/github/github.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/github-square/github-square.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/github-alt/github-alt.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/google/google.css" />
<link rel="stylesheet" type="text/css" media="screen" href="icons/facebook/facebook.css" />
</head>
<body>
<i class="android-icon"></i>
<i class="arrow-right-icon"></i>
<i class="apple-icon"></i>
<i class="beer-icon"></i>
<i class="address-book-icon"></i>
<i class="address-book-o-icon"></i>
<i class="git-icon"></i>
<i class="git-square-icon"></i>
<i class="github-icon"></i>
<i class="github-square-icon"></i>
<i class="github-alt-icon"></i>
<i class="google-icon"></i>
<i class="facebook-icon"></i>
</body>
</html>