-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreatetasks.html
48 lines (47 loc) · 1.72 KB
/
createtasks.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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>Carrots</title>
</head>
<body class="skybg">
<div class="wrap">
<img class="logo2" src="finalbunnylogo.png" alt="logo of bunny with a carrot">
<h4 class="belowlogo">What should ____ do to make the wish come true?</h4>
<form action="/action_page.php">
<table>
<tr>
<td>
<label for="wish1">Task 1</label>
<input type="text"><br><br>
</td>
<td>
<label for="wish2">Task 2</label>
<input type="text"><br><br>
</td>
<td>
<label for="wish3">Task 3</label>
<input type="text"><br><br>
</td>
</tr>
<tr>
<td>
<label for="wish1">Task 4</label>
<input type="text"><br><br>
</td>
<td>
<label for="wish2">Task 5</label>
<input type="text"><br><br>
</td>
<td>
<label for="wish3">Task 6</label>
<input type="text"><br><br>
</td>
</tr>
</table>
<input type="submit" class="btn btn-primary btn-lg lightblue" value="Submit Tasks">
</form>
</div>
</body>
</html>