studio-e9ec30at / index.html
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
e0e81c6 verified
raw
history blame contribute delete
803 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simple and elegant todo list application">
<title>Todo App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>πŸ“ Todo App</h1>
<a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="credit">Built with anycoder</a>
</header>
<div class="input-section">
<input type="text" id="todoInput" placeholder="Add a new task..." />
<button id="addBtn">Add</button>
</div>
<ul id="todoList"></ul>
</div>
<script src="app.js"></script>
</body>
</html>