-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweekly2.html
More file actions
42 lines (38 loc) · 1.58 KB
/
Copy pathweekly2.html
File metadata and controls
42 lines (38 loc) · 1.58 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Weekly 2</title>
<link rel="stylesheet" href="Weekly.css">
<link rel="stylesheet" href="navbar.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="top-navigation-bar">
<div class="page-title"><h2>Weekly App</h2></div>
<div> <a href="./index.html"> <button class="top-buttons">Home</button> </a> </div>
<div> <a href="./weekly2.html"> <button class="top-buttons">Weekly</button> </a> </div>
<div> <a href="./goals.html"> <button class="top-buttons">Goals</button> </a> </div>
</nav>
<!--Holds the title like: November 23-29, 2025...-->
<div class="week-info">
<div style="
display: flex;
flex-direction: row;
">
<div class="js-change-info css-change-info" style="flex:1;"></div>
<div class="js-title-edit-button-box" style="place-self: center;">
<button class="button-change-info js-button-change-info">Edit</button>
</div>
</div>
</div>
<!--THE MAIN CONTAINER: Holds the actual "day boxes" to store all the user-entered tasks-->
<div class="week-container"></div>
<!--Seperate section for CLEAR button-->
<div style="display: grid; place-self: center;">
<button class="button-clear-tasks js-clear-all-button">Clear All</button>
</div>
<script src="Weekly2.js"></script>
</body>
</html>