-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 971 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
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Simple Counter</title>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet/less" type="text/css" href="css/style.less"/>
</head>
<body>
<h1 class="tac header">Simple Counter</h1>
<div>
<h1 id="counter">0</h1>
</div>
<div class="footer">
<form id="enterForm">
<input id="number" type="number" name="number" placeholder="Num here">
<button id="resetForm">Reset</button>
</form>
</div>
<div id="box"></div>
<div id="finish"></div>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript">less = {logLevel: 1}</script>
<script type="text/javascript" src="js/less.min.js"></script>
</body>