Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.

Create index.html #72

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
24 changes: 24 additions & 0 deletions medium1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TODO LIST</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h1>Todo List</h1>
<div class="input-container">
<input class="todo-input" placeholder="Add a new task...">
<button class="add-button">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<div class="filters">
<div class="filter" data-filter="completed">Complete</div>
<div class="filter" data-filter="pending">Incomplete</div>
<div class="delete-all">Delete All</div>
</div>