-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 3.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="在线工具">
<title>在线工具</title>
<!-- Bootstrap core CSS -->
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom styles -->
<link href="https://v4.bootcss.com/docs/4.3/examples/offcanvas/offcanvas.css" rel="stylesheet">
<link href="./static/css/index.css" rel="stylesheet"/>
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand mr-auto mr-lg-0" href="#">在线工具</a>
<button class="navbar-toggler p-0 border-0" type="button" data-toggle="offcanvas">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
<main role="main" class="container">
<div class="my-3 p-3 bg-white rounded shadow-sm">
<h6 class="border-bottom border-gray pb-2 mb-0">便利工具</h6>
<div class="item-grid media text-muted pt-3">
<ul class="list-style row">
<!-- 网贷实际利率计算器 -->
<li class="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12">
<div class="item-node">
<a target="_blank" href="resources/loan/index.html" title="占用资金逐渐减少计算真实利率" class="tool-link">
<i style="background-image:url('./static/img/loan.png');"></i>
<b>网贷实际利率计算器</b>
<p class="text-justify text-truncate">占用资金逐渐减少计算真实利率</p>
</a>
</div>
</li>
<!-- 比例涨幅计算 -->
<li class="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12">
<div class="item-node">
<a target="_blank" href="resources/compound_interest_tool/index.html" title="占用资金逐渐减少计算真实利率" class="tool-link">
<i style="background-image:url('./static/img/loan.png');"></i>
<b>比例涨幅计算</b>
<p class="text-justify text-truncate">比例涨幅计算</p>
</a>
</div>
</li>
</ul>
</div>
<small class="text-right mt-3 d-none">
<a href="#">All updates</a>
</small>
</div>
<div class="my-3 p-3 bg-white rounded shadow-sm">
<h6 class="border-bottom border-gray pb-2 mb-0">开发工具</h6>
<div class="item-grid media text-muted pt-3">
<ul class="list-style row">
<!-- URL格式化 -->
<li class="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12">
<div class="item-node">
<a target="_blank" href="resources/urltool/index.html" title="URL格式化参数显示" class="tool-link">
<i style="background-image:url('./static/img/url.jpg');"></i>
<b>URL格式化</b>
<p class="text-justify text-truncate">URL格式化参数显示</p>
</a>
</div>
</li>
<!-- 密码生成 -->
<li class="col-xl-4 col-lg-4 col-md-6 col-sm-12 col-12">
<div class="item-node">
<a target="_blank" href="resources/js-passwd-generator/index.html" title="URL格式化参数显示" class="tool-link">
<i style="background-image:url('./static/img/url.jpg');"></i>
<b>密码生成</b>
<p class="text-justify text-truncate">密码生成</p>
</a>
</div>
</li>
</ul>
</div>
<small class="text-right mt-3 d-none">
<a href="#">All updates</a>
</small>
</div>
</main>
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.slim.min.js"></script>
</body>
</html>