Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 73 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,74 @@
<html>
<HEAD><title>Todo App</title>
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css" type="text/css" MEDIA="screen" charset="utf-8">
</HEAD>
<body>
<div class="aaa"><img src="./eisenhower-matrix.jpg"><a class='more_inf' href="https://goal-life.com/page/method/matrix-eisenhower">Want more details&quest;</a></div>
<div class="centered-main-page-element"><p id='topSectionForAddingElementToList'><label for="new-task">Add Item</label><div class="task-row-wrapper"><input id='new-task'class="task" type="text"><button>Add</button></div>
</p><h3>Todo</h3>
<ul id='incompleteTasks'>
<li><input type='checkbox'><label class="task">Pay Bills</label><input type="text" class="task"><button class="edit">Edit</button><button class="delete"><img src="./remove.svg"></button></li>
<li class="editMode"><input type="checkbox"><label class="task">Go Shopping</label><input type="text" value="Go Shopping" class="task"><button class='edit'>Save</button><button class="delete"><img src="./remove.svg"></button></li>
</ul><h3>Completed</h3><ul id="completed-tasks"><li><input type="checkbox" checked><label class="task">See the Doctor</label><input type="text" class="task"><button class="edit">Edit</button><button class="delete"><img src="./remove.svg"></button>
</li>
</ul>
</div>
<script type="text/javascript" SRC="app.js"></script>
</body>
<!DOCTYPE html>
<head>
<title>Todo App</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700"
rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css" MEDIA="screen" charset="utf-8">
</head>
<body>
<div class="aaa"><img src="./eisenhower-matrix.jpg">
<a class="more-inf" href="https://goal-life.com/page/method/matrix-eisenhower">
Want more details?;
</a>
</div>
<div class="centered-main-page-element">
<p id="topSectionForAddingElementToList">
<label for="new-task">
Add Item
</label>
<div class="task-row-wrapper">
<input id="new-task"class="task" type="text">
<button>
Add
</button>
</div>
</p>
<h3>
Todo
</h3>
<ul id="incompleteTasks">
<li>
<input type="checkbox"><label class="task">
Pay Bills
</label>
<input type="text" class="task">
<button class="edit">Edit</button>
<button class="delete">
<img src="./remove.svg">
</button></li>
<li class="editMode">
<input type="checkbox">
<label class="task">
Go Shopping
</label>
<input type="text" value="Go Shopping" class="task">
<button class="edit">
Save
</button>
<button class="delete">
<img src="./remove.svg">
</button>
</li>
</ul>
<h3>
Completed
</h3>
<ul id="completed-tasks">
<li>
<input type="checkbox" checked>
<label class="task">
See the Doctor
</label>
<input type="text" class="task">
<button class="edit">
Edit
</button>
<button class="delete">
<img src="./remove.svg">
</button>
</li>
</ul>
</div>
<script SRC="app.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {
.aaa img {
width: 100%;
}
.aaa .more_inf {
.aaa .more-inf {
font-family: fantasy, cursive;
}

Expand Down