forked from CyberZHG/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
random_hex.html
99 lines (93 loc) · 4.03 KB
/
random_hex.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>Random HEX</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<meta name="google-site-verification" content="tXyJhIUjwgDkdY4scPFF1nBiVW9co3-HjowXazdoL7I" />
<link rel="stylesheet" href="./lib/css/bootstrap.min.css">
<link rel="stylesheet" href="./lib/css/ripples.min.css">
<link rel="stylesheet" href="./lib/css/bootstrap-material-design.min.css">
<link rel="stylesheet" href="./css/toolbox.css">
<link rel="stylesheet" href="./css/random_hex.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/toolbox">Toolbox</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/toolbox">Home</a></li>
<li><a href="https://github.com/CyberZHG/toolbox">Repository</a></li>
<li><a href="https://github.com/CyberZHG/toolbox/issues">Issues</a></li>
</ul>
<ul class="nav navbar-nav navbar-right hidden-xs">
<li>
<a href="https://travis-ci.org/CyberZHG/toolbox">
<img src="https://img.shields.io/travis/CyberZHG/toolbox.svg?maxAge=2592000">
</a>
</li>
<li class="hidden-sm hidden-xs">
<a href="https://github.com/CyberZHG/toolbox/issues">
<img src="https://img.shields.io/github/issues/CyberZHG/toolbox.svg?maxAge=2592000">
</a>
</li>
<li class="hidden-md hidden-sm hidden-xs">
<a href="https://github.com/CyberZHG/toolbox/pulls">
<img src="https://img.shields.io/github/issues-pr/CyberZHG/toolbox.svg?maxAge=2592000">
</a>
</li>
<li class="hidden-md hidden-sm hidden-xs">
<a href="https://github.com/CyberZHG/toolbox/graphs/contributors">
<img src="https://img.shields.io/github/contributors/CyberZHG/toolbox.svg?maxAge=2592000">
</a>
</li>
<li>
<a href="https://github.com/CyberZHG/toolbox">
<img src="https://img.shields.io/github/stars/CyberZHG/toolbox.svg?style=social&label=Star&maxAge=2592000">
</a>
</li>
<li>
<a href="https://github.com/CyberZHG/">
<img src="https://img.shields.io/github/followers/CyberZHG.svg?style=social&label=Follow&maxAge=2592000">
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid container-body">
<!-- Body Begin -->
<div id="div_num"></div>
<!-- Body End -->
</div>
<script src="./lib/js/jquery.min.js"></script>
<script src="./lib/js/bootstrap.min.js"></script>
<script src="./lib/js/ripples.min.js"></script>
<script src="./lib/js/material.min.js"></script>
<script src="./js/random_hex.js"></script>
<script>
$(function() {
$.material.init();
});
</script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75616109-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>