-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (62 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Title Page</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- font awesome -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Angular 1.5.7-->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.7/angular.min.js"></script>
<link rel="stylesheet" type="text/css" href="lovely-icons/lovely-icons.css">
<style>
i,h1 {
font-size: 48px;
padding: 20px;
}
h1 {
border-bottom: 1px dashed grey;
}
</style>
</head>
<body>
<h1> Brand Icons </h1>
<i class="li-amazon"></i>
<i class="li-android"></i>
<i class="li-facebook"></i>
<i class="li-git"></i>
<i class="li-github"></i>
<i class="li-firefox"></i>
<i class="li-youtube"></i>
<i class="li-whatsapp"></i>
<i class="li-trello"></i>
<i class="li-spotify"></i>
<h1>Payment Icons</h1>
<i class="li-visa "></i>
<i class="li-mastercard"></i>
<i class="li-google-wallet"></i>
<i class="li-wallet"></i>
<h1>Transportation Icons</h1>
<i class="li-car"></i>
<i class="li-truck"></i>
<i class="li-bike"></i>
<i class="li-ambulance"></i>
<h1>Gender Icons</h1>
<i class="li-male-gender "></i>
<i class="li-female-gender"></i>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/js/bootstrap.min.js"></script>
</body>
</html>