-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 855 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML :: CSS :: JS - Auto Refresh</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="autoRefresh" checked>
<label class="form-check-label" for="autoRefresh">Auto refresh</label>
</div>
</div>
<div class="col-sm">
<label for="refreshInterval">Seconds</label>
<input type="number" id="refreshInterval" value="10">
</div>
<div class="col-sm" id="date">3</div>
</div>
</div>
<script src="js/app.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>