-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmom.html
More file actions
24 lines (21 loc) · 856 Bytes
/
mom.html
File metadata and controls
24 lines (21 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="ru">
<head>
<title>TODO</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<script type="module" src="main.js"> </script>
</head>
<body>
<header class="container d-flex justify-content-between mb-5 p-3" id="header-container">
<nav class="nav">
<a href="index.html" class="nav-link">Мои дела</a>
<a href="dad.html" class="nav-link">Дела папы</a>
<a href="mom.html" class="nav-link">Дела мамы</a>
</nav>
</header>
<div class="container" id="todo-app" data-owner="Мама"></div>
</body>
</html>