Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add&remove #2

Merged
merged 7 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# To Do List
"To-do list" is a tool that helps to organize daily activites. It simply lists the things which are needed to be done and allows user to mark them as complete.
In this step of project, a simple HTML list of To Do tasks is builded. The list is styled according to the specifications. This simple web page is built using webpack and served by a webpack dev server.
In this step of project, the CRUD (create, update, delete) methods are implemented. This simple web page is built using webpack and served by a webpack dev server.

![image](https://user-images.githubusercontent.com/78906545/155178401-6c90566a-6c96-44bb-9715-86f21f3c1fdc.png)
![image](https://user-images.githubusercontent.com/78906545/155403049-861d20ef-8fd8-450f-894b-56464bf01937.png)

## Built With
- HTML
Expand Down
Binary file added dist/a87df0de18ccd9b1a6b9.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/ca889572c411f70bd1a6.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 15 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wbpack Exercise</title>
<title>to do list</title>
<script defer src="main.js"></script></head>
<body>
<h1>Hello webpack!</h1>
<main id="mainBox">
<div class="list-title">
<h2>To Do List</h2>
<img class="icon" src="https://img.icons8.com/material-outlined/24/000000/synchronize.png" alt="changeIcon"/>
</div>
<form class="form">
<div class="intery">
<input id="inputDescription" class="input-box" type="text" aria-label="add to list" placeholder="Add to your list..." required>
<button id="addButton" type="button" class="button" aria-label="inter"><img src="https://img.icons8.com/material-rounded/24/000000/down-left.png" alt="interIcon"/></button>
</div>
</form>
<div id="placeholder"></div>
<button type="button" class="button" id="clear">Clear all completed</button>
</main>
</body>
</html>
17,373 changes: 113 additions & 17,260 deletions dist/main.js

Large diffs are not rendered by default.