-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-dos APP using JavaScript</title>
<!-- original JavaScript -->
<script src="https://gabriel6181997.github.io/to-do-list-app/js/script.js" defer></script>
<!-- reset css -->
<link rel="stylesheet" href="https://gabriel6181997.github.io/to-do-list-app/css/reset.css">
<!-- original css-->
<link rel="stylesheet" href="https://gabriel6181997.github.io/to-do-list-app/css/style.css">
</head>
<body>
<form class="header" name="form1">
<h1>今日のタスク</h1>
<div class="header-content-box">
<input type="text" id="myinput" placeholder="タスクを入力してください!">
<button id="button" class="addbtn">Add</button>
</div><!-- /.header-content-box -->
</form><!-- /.header -->
<ul id="myUL">
<li>タスク1</li>
<li>タスク2</li>
<li>タスク3</li>
<li>タスク4</li>
</ul>
</body>
</html>