103 lines
3.7 KiB
HTML
103 lines
3.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>To Do App | Features</title>
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<link rel="stylesheet" href="./css/styles.css" />
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="./index.html">
|
|
<img src="./images/logo.svg" alt="Logo" width="50" height="auto" />
|
|
</a>
|
|
|
|
<button
|
|
class="navbar-toggler"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#navbarNav"
|
|
aria-controls="navbarNav"
|
|
aria-expanded="false"
|
|
aria-label="Toggle navigation"
|
|
>
|
|
<img src="./images/Hamburger.svg" alt="hamburger icon" height="40px" width="auto" />
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto text-end">
|
|
<li class="nav-item">
|
|
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="./features.html">Features</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="./pricing.html">Pricing</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="./support.html">Support</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- ↓ Page not ready ↓ -->
|
|
<section class="bg-img d-flex justify-content-center align-items-center support py-5">
|
|
<div class="container text-center text-white py-5">
|
|
<img src="./images/Construction.svg" alt="Under Construction" height="150px" width="auto" />
|
|
|
|
<h2 class="mt-5">Page under construction. Check back later!</h2>
|
|
|
|
<div class="mt-5">
|
|
<a href="./index.html" class="btn btn-primary px-4">Go Home</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- ↑ Page not ready ↑ -->
|
|
|
|
<!-- ↓ Footer ↓ -->
|
|
<footer>
|
|
<div class="py-5 container">
|
|
<div class="d-flex justify-content-between flex-column gap-5 gap-md-0 flex-md-row align-items-center px-3 mb-5">
|
|
<a href="./index.html">
|
|
<img src="./images/logo.svg" alt="logo" height="100px" width="auto" />
|
|
</a>
|
|
|
|
<div class="col-12 col-sm-8 col-md-7 col-lg-5 col-xl-4">
|
|
<h3 class="text-white mb-3 text-center text-md-start">Subscribe to our Newsletter</h3>
|
|
|
|
<div class="input-group">
|
|
<input placeholder="Enter your email" type="email" class="form-control" />
|
|
|
|
<button class="btn btn-primary">Subscribe</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-center flex-column gap-3 flex-md-row align-items-center">
|
|
<a class="nav-link" href="#">Privacy Policy</a>
|
|
<p class="m-0 d-none d-md-block">|</p>
|
|
<a class="nav-link" href="#">Terms of Service</a>
|
|
<p class="mb-0 me-3 d-none d-md-block">|</p>
|
|
<p class="m-0">ListMe © 2025 All Rights Reserved</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</body>
|
|
</html>
|