-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.html
More file actions
30 lines (30 loc) · 769 Bytes
/
testing.html
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="content">
<h1>Task Smash 2.0</h1>
<table>
<tr>
<th>Task</th>
<th>Added</th>
<th>Actions</th>
</tr>
<tr>
<td>Content</td>
<td>Date</td>
<td>More</td>
</tr>
</table>
<form action="">
<input type="text" name="content" id="content">
<input type="submit" value="Add Task" id="btn_add">
</form>
</div>
</body>
</html>