-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·35 lines (31 loc) · 1011 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
32
33
34
35
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Sample</title>
<script src="./vendor/jquery-1.11.2.min.js"></script>
<script src="./vendor/underscore.js"></script>
<script src="./vendor/backbone.js"></script>
<script src="lib/bundle.js"></script>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="todo">
<h1>Todos</h1>
<label>
<input type="checkbox">
</label>
<form class="todoForm pure-form">
<input type="text" class="todoText" placeholder="What needs to be done?">
<input type="submit" class="todoBtn pure-button pure-button-primary" value="Add New">
</form>
<ul class="todoList"></ul>
<label>
<input type="checkbox">
</label>
</div>
</body>
</html>