Spaces:
Running
Running
File size: 2,460 Bytes
77ba8ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <!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>© 2023 Todo App. All rights reserved.</p>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html> |