38 lines
1.1 KiB
HTML
38 lines
1.1 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 | Home</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 narbar-expand-lg">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">
|
|
<img
|
|
src="./images/logo.svg"
|
|
alt="Logo"
|
|
width="30"
|
|
height="24"
|
|
class="d-inline-block align-text-top"
|
|
/>
|
|
Bootstrap
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<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>
|