SignatureCardFrontend/install/index.html
2023-05-30 16:17:58 -04:00

58 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="../stylesheet.css">
<link rel="stylesheet" href="../darkmode.css">
<title>Install Card</title>
</head>
<body>
<header>
<a class="navbar-brand" href="#">
<img class="logo" src="../logo.png" alt="CAIU Logo">
</a>
<div style="margin-right: 0.5em;">
<label for="theme" class="theme">
<span class="toggle-wrap">
<input id="theme" class="toggle" type="checkbox" role="switch" name="theme" value="dark">
<span class="icon">
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
<span class="icon-part"></span>
</span>
</span>
</label>
</div>
</header>
<nav class="navbar">
<ul>
<li><a href="../">Home</a></li>
<li><a class="active" href="#">Install</a></li>
</ul>
</nav>
<main>
<article>
<h1 class="text-center">Signature Card Installation Guide</h1>
<figure>Fig</figure>
<p>P</p>
</article>
<section>Sec</section>
</main>
<footer>Made by the best intern!</footer>
<script src="../darkmode.js"></script>
</body>
</html>