bold-space-49 / index.html
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
57361f3 verified
<!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="A simple, fast, and responsive To-Do application built with vanilla JavaScript.">
<meta name="keywords" content="todo, list, vanilla js, productivity, front-end">
<title>Vanilla JS To-Do App</title>
<link rel="stylesheet" href="assets/css/styles.css">
<!-- Using Google Fonts for better typography -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header">
<h1>Vanilla To-Do List</h1>
<p class="branding">
Built with <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" rel="noopener noreferrer">anycoder</a>
</p>
</header>
<main class="container">
<section class="todo-input">
<form id="todo-form">
<input
type="text"
id="todo-input"
placeholder="What needs to be done?"
aria-label="New To-Do Item"
required
maxlength="100"
>
<button type="submit" id="add-button">Add Task</button>
</form>
</section>
<section class="todo-list-container">
<h2>Tasks</h2>
<ul id="todo-list" aria-live="polite">
<!-- To-Do items will be injected here by JavaScript -->
</ul>
</section>
</main>
<footer class="site-footer">
<p>&copy; 2024 Simple To-Do App | All Rights Reserved.</p>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>