forked from jmrashed/adibaicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
79 lines (66 loc) · 2 KB
/
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
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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link rel="stylesheet" href="https://adibaicon.vercel.app/css/adibaIcon.css">
<style>
html {
padding: 0;
margin: 0;
}
body {
width: auto;
height: auto;
overflow: hidden;
position: relative;
justify-content: center;
align-items: center;
}
.demo-icon-section {
margin: 35px;
}
.demo-icon-section .adiba-icon{
font-size :4em ;
}
.container {
width: 940px;
margin-right: auto;
margin-left: auto;
*zoom: 1;
}
.container:before,
.container:after {
display: table;
content: "";
line-height: 0;
}
.container:after {
clear: both;
}
</style>
</head>
<body>
<div class="container">
<h1>Icon Testing </h1>
<p>
Use as cdn : https://adibaicon.vercel.app/css/adibaIcon.css
</p>
<h2>Demo</h2>
<div class="demo-icon-section">
<i class="adiba-icon icon-style1-r icon-lg icon-red " title="style1"></i>
<i class="adiba-icon icon-style2-a icon-lg icon-blue " title="style2"></i>
<i class="adiba-icon icon-style3-s icon-lg icon-yellow " title="style3"></i>
<i class="adiba-icon icon-style1-h icon-lg icon-purple" title="style1"></i>
<i class="adiba-icon icon-style2-e icon-lg icon-green" title="style2"></i>
<i class="adiba-icon icon-style3-d icon-lg icon-orange" title="style3"></i>
</div>
</div>
<footer class="footer">
<div class="container">
<p>© Copyright by <a href="https://github.com/jmrashed">Md Rasheduzzaman</a></p>
</div>
</footer>
</body>
</html>