-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.28 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="expires" content="0"/>
<meta http-equiv="keywords" content="dwz,短网址,littletools,小工具,小兔子"/>
<meta http-equiv="description" content="短网址"/>
<link rel="icon" type="image/x-icon" href="image/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="css/BasicGrey.min.css"/>
<script src="js/jquery-3.2.0.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/flcom.min.js"></script>
<script src="js/index.min.js"></script>
<title>短网址</title>
</head>
<body class="basic-grey">
<h1>短网址</h1>
<form>
<label for="in">请输入要缩短的网址:</label>
<span><input id="in" type="url"/><br/></span>
<label for="out">请输入短网址:</label>
<span>http://dwz.littletools.ml/<input id="out" type="url"/></span>
<button id="submit" type="button" tabindex="-1">
开始
</button>
<br/>
</form>
<div id="result" style="display:none">
网址已成功缩短为 <a id="url" target="_blank"></a>
</div>
</body>
</html>