-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
43 lines (41 loc) · 1.71 KB
/
todo.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saved</title>
<script src="todo.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1 class="logo"><a class="link" href="main.html"></a>SKRAPZ</a></h1>
<nav>
<ul class="nav">
<li><a class="link" href="index.html">Home</a></li>
<li ><a class="link" href="main.html">Explore</a></li>
<li><a class="link" href="todo.html">Saved</a></li>
<li><a class="link" href="contact.html">Contact</a></li>
<li><svg class='darkMode' viewBox="0 0 24 24">
<path fill="currentColor" d="M12,18V6A6,6 0 0,1 18,12A6,6 0 0,1 12,18M20,15.31L23.31,12L20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31Z" />
</svg></li>
</ul>
</nav>
<svg class="menu" viewBox="0 0 24 24">
<path fill="currentColor" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" />
</svg>
</header>
<div class="todo-container">
</div>
<div class="popup-container hidden" id="meal-popup">
<div class="popup">
<button id="close-popup" class="close-popup">
<svg style="width:24px;height:24px" viewBox="0 0 24 24">
<path d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</svg>
</button>
<div class="meal-info" id="meal-info"></div>
</div>
</div>
</body>
</html>