-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Fingers And Toes</title>
<link href="https://fonts.googleapis.com/css?family=Acme|Signika:600,700" rel="stylesheet">
<link rel="stylesheet/less" type="text/css" href="css/style.less"/>
</head>
<body>
<h1 class="title">Fingers and Toes</h1>
<div id="container" class="centered">
<p id="finger" class="col-left">Fingers</p>
<p id="toe" class="col-left">Toes</p>
<input class="col-left" type="number" min="0" id="number" placeholder="Add a number" tabindex="1">
<input class="col-left" type="number" min="0" id="counter" placeholder="Counter here" readonly="readonly">
<button class="col-left" id="start" tabindex="2">Start</button>
<button class="col-left" id="reset" tabindex="3">Reset</button>
</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>