-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (73 loc) · 2.47 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
<!DOCTYPE html>
<html>
<head>
<title>bonezegei-badge</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://bonezegei.github.io/bonezegei-web/src/bonezegei-web.css" />
<script src="https://bonezegei.github.io/bonezegei-badge/src/bonezegei-badge.js"></script>
</head>
<body>
<nav>
<div class="navbar">
<div class="container nav-container">
<!--to align to right style="justify-content: space-between"-->
<input class="checkbox" type="checkbox" name="" id="" />
<div class="logo">
<h1>Bonezegei -</h1>
</div>
<div class="menu-items">
<li><a href="https://bonezegei.github.io/bonezegei/">home</a></li>
<li>
<a href="https://bonezegei.github.io/bonezegei-web">web</a>
</li>
<li>
<a href="https://bonezegei.github.io/bonezegei-chart">chart</a>
</li>
<li>
<a href="https://bonezegei.github.io/bonezegei-mobile">mobile</a>
</li>
<li>
<a
class="active"
href="https://bonezegei.github.io/bonezegei-badge"
>badge</a
>
</li>
<li>
<a href="https://bonezegei.github.io/bonezegei-codeview"
>codeview</a
>
</li>
</div>
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
</div>
</div>
</nav>
<!--End of Navigation Bar-->
<div class="container" style="background-color: white">
<p>bonezegei-badge
</p>
<p>Simple Text</p>
<img id="badge" alt="" />
<img id="badge2" alt="" />
<img id="badge3" alt="" />
<br /><br />
<p>Double Text</p>
<img id="badge4" alt="" />
<img id="badge5" alt="" />
<img id="badge6" alt="" />
<script>
badgeSimpleText("bonezegei-badge", "green", "badge");
badgeSimpleText("version 1", "tomato", "badge2");
badgeSimpleText("Bonezegei", "crimson", "badge3");
badgeDoubleText("Version", "v1.0.1", "#333", "crimson", "badge4");
badgeDoubleText("hello", "world", "green", "#333", "badge5");
badgeDoubleText("bonezegei", "badge", "#444", "#1F51FF", "badge6");
</script>
</div>
</body>
</html>