-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (56 loc) · 1.83 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Resume To Do</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<section>
<h1>Here is my list of things I need to do to finish my Resume:</h1>
<form id='calculator-form'>
<fieldset>
<label for="toDoItemText">Enter text of what To Do Here</label>
<input type="text" id="toDoItemText" placeholder="Write to do here" title="Enter your Resume To Do text here"></input>
<br>
</fieldset>
<section>
<br>
<div>
<div class='input-field-button'>
<button type="button" id='submit-button' title="Click Mouse here to Add what you typed">Add your To Do Item to your list</button>
</div>
<br>
<div class='input-field-button'>
<button type="button" id='delete-all-completed-tasks-button' title="Click mouse here to delete checked row(s)">Delete Completed & Checked Item from List</button>
</div>
</div>
</section>
</form>
</section>
<div>
<h2>Items in Your Resume that need to get done:</h2>
</div>
<div class="grid-container">
<table class="w3-table-w3-striped">
<thead title="This is your To Do list for your Resume">
<tr>
<th>Date Entered</th>
<th>Completed?</th>
<th>To Do Item</th>
</tr>
</thead>
<tbody id="resumeToDoTable" class="tableBody">
<tr>
<td>Friday 12-31-2021</td>
<td><input type="checkbox" id="row0" title="Original Title" value="Orig checkbox value"></input>
</td>
<td id="row0text">Here's what your To Do text will look like.</td>
</tr>
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>