todo-multi / about.html
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
77ba8ee verified
Raw
History Blame Contribute Delete
2.46 kB
<!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="About Todo App - Learn about our simple task management solution">
<title>About - Todo App</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-brand">TodoApp</a>
<ul class="nav-menu">
<li class="nav-item"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item current"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
<button class="hamburger" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
</header>
<main class="container">
<section class="page-content">
<h1>About Todo App</h1>
<p>This is a simple todo application built with vanilla JavaScript, HTML, and CSS. It helps you manage your tasks efficiently with the following features:</p>
<div class="feature-list">
<div class="feature">
<h3>Add Tasks</h3>
<p>Quickly add new tasks to your list</p>
</div>
<div class="feature">
<h3>Mark as Complete</h3>
<p>Check off tasks when they're done</p>
</div>
<div class="feature">
<h3>Delete Tasks</h3>
<p>Remove tasks you no longer need</p>
</div>
<div class="feature">
<h3>Filter Tasks</h3>
<p>View all, active, or completed tasks</p>
</div>
</div>
<p>All your tasks are stored locally in your browser, so they persist between sessions.</p>
</section>
</main>
<footer>
<div class="container">
<p>&copy; 2023 Todo App. All rights reserved.</p>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>