-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTodo_list.html
36 lines (33 loc) · 1.23 KB
/
Todo_list.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<title>Todo list</title>
<!-- <link rel="stylesheet" type="text/css" href="Todo_list.css"> -->
<script language="JavaScript" src="Todo_list.js"></script>
<!-- 最新編譯和最佳化的 CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- 選擇性佈景主題 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!-- 最新編譯和最佳化的 JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="text-center">
<h1>To Do List</h1>
<form class="form-inline" role ="form">
<div class="form-group">
<label for="text" class="sr-only"></label>
<input type="text" id="text" class="form-control" placeholder="要做的事...">
<button id="pre" class="btn btn-success">新增</button>
</div>
</form>
<br>
<div id="now"></div>
</div>
</div>
</body>
</html>