forked from zjiodeu/wget-gui-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Download File</title>
<link rel="icon" type="image/png" id="favicon" href="img/favicon.png" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/progressbar.css" />
<link rel="stylesheet" type="text/css" href="css/notifIt.css" />
</head>
<body>
<div id="urlbar">
<div class="title">Download file:</div>
<input type="url" id="addTaskAddr" placeholder="http://.." value="" /><input type="button" id="addTaskBtn" value="Add Task" />
</div>
<div id="tasklist"></div>
<div id="footer">Wget GUI Light <span class="button"><a id="bookmark" href="#" title="Move me to your bookmarks bar">Download this</a></span></div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/url.js"></script>
<script type="text/javascript" src="js/notifIt.js"></script>
<script type="text/javascript" src="js/core.js"></script>
</body>
</html>