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

Deploy gh-pages #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
25 changes: 0 additions & 25 deletions .eslintrc.json

This file was deleted.

70 changes: 0 additions & 70 deletions .github/workflows/linters.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .hintrc

This file was deleted.

22 changes: 0 additions & 22 deletions .stylelintrc.json

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions README.md

This file was deleted.

41 changes: 41 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<title>Harshika's To do list</title>
<script defer src="main.js"></script></head>
<body>
<div class="container">
<div class="main-list">
<div class="item-container">
<div>
<div class="today-content white-height">
<span class="heading">Today's To Do list</span>
<i class="fas fa-sync"></i>
</div>
<form class="add-new white-height">
<input class="no-outline" maxlength="128"
id="new-item"
type="text"
placeholder="Add to your list ..."
/>
<i class="fas fa-level-down-alt"></i>
</form>
<div class="full-list"></div>
</div>
</div>
<div class="clear">
<a href="#" title="clear all" id="clear-text">Clear all completed</a>
</div>
</div>
</div>
</body>
</html>
<!--endsection ->
Loading