-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (64 loc) · 2.11 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Focus.do</title>
<!-- Meta Tags -->
<meta charset="utf-8"/>
<meta name="description" content="Focus.do"/>
<meta name="author" content="Bala"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<!-- Favicon -->
<link rel="shortcut icon" href="images/check61.png">
<!-- Stylesheets -->
<link href='http://fonts.googleapis.com/css?family=Rancho' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles/style.css"/>
<!-- JavaScript -->
<script type="text/javascript" src="javascript/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="javascript/jquery-ui.js"></script>
<script type="text/javascript" src="javascript/action-practice.js"></script>
</head>
<body>
<section class="left">
<header>
<a href="index.html" class="logo"></a>
<h1>Focus.do</h1>
</header>
<div class="count-container">
<hr>
<p class="count"><span id="do">0</span> DO</p>
<hr>
<p class="count"><span id="done">0</span> DONE</p>
<hr>
<p class="count"><span id="total">0</span> TOTAL</p>
<hr>
</div>
<footer>
<p>Crafted with <span class="love"> ♥ </span> by <a href="#">Bala M.</a></p>
</footer>
</section>
<section class="right"> <!-- App Section -->
<form>
<input type="text" name="newItem" id="newItem" class="textBox" autocomplete="off" placeholder="Type here.." required/>
</form>
<ul id="list">
<li class="listitem">
<span class="item">Tap to check off.</span>
<div class="delete"></div>
</li>
<li class="listitem checked">
<span class="item">I 'm checked off.</span>
<div class="delete"></div>
</li>
<li class="listitem">
<span class="item">Tap & Drag me.</span>
<div class="delete"></div>
</li>
<li class="listitem">
<span class="item">Tap X & I'll be gone.</span>
<div class="delete"></div>
</li>
</ul>
</section>
</body>
</html>