light-gen-21 / index.html
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
309802e verified
Raw
History Blame Contribute Delete
1.66 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanilla ToDo App | Task Manager</title>
<!-- SEO Meta Tags -->
<meta name="description" content="A simple, fast, and responsive ToDo application built with pure HTML, CSS, and Vanilla JavaScript, utilizing local storage.">
<meta name="keywords" content="todo app, javascript, vanilla js, html, css, task list, local storage">
<meta name="author" content="Anycoder">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header>
<h1>My Task Manager</h1>
<p>
<a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank" rel="noopener noreferrer">Built with anycoder</a>
</p>
</header>
<main>
<div class="todo-container">
<h2>Add New Task</h2>
<form id="todo-form" class="input-form">
<label for="task-input" class="sr-only">New Task Description</label>
<input type="text" id="task-input" placeholder="What needs to be done?" required maxlength="100">
<button type="submit">Add Task</button>
</form>
<h2>Current Tasks</h2>
<ul id="todo-list" class="todo-list" aria-live="polite">
<!-- Tasks will be injected here by JavaScript -->
</ul>
</div>
</main>
<footer>
<p>&copy; 2024 Vanilla Todo App. All rights reserved.</p>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>