-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.04 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
<html>
<head>
<title>Tasky</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<link rel="stylesheet" type="text/css" href="main.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
</head>
<body>
<div class="content">
<h1>Tasky</h1>
<div class="white-box">
<h2>My list</h2>
<div class="task-list">
</div>
<div class="add-task">
<label>New Task:</label>
<span class="task-name"><input type="text" name="task_name" maxlength="100"></span>
<button v-on:click="addButton" class="add-task button" type="button">Add new Task</button>
<button class="delete-all button" type="button">Delete All</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>