-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reminders.html
44 lines (44 loc) · 1.32 KB
/
Reminders.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
44
<!DOCTYPE html>
<html lang="en">
<head>
<script src="script.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Navigation</title>
</head>
<body>
<nav>
<div class="logo">
<h4>WORKWELL</h4>
</div>
<ul class="nav-links">
<li>
<a href="MyProfile.html">MyProfile
</a>
</li>
<li>
<a href="Reminders.html">Reminders
</a>
</li>
<li>
<a href="Ergonomics.html">Ergonomics
</a>
</li>
<li>
<a href="Breaks.php">Breaks
</a>
</li>
<li>
<a href="loggedout.html">Logout
</a>
</li>
</ul>
</nav>
<div class="content">
<h3>A Reminder for you</h3>
</div>
</body>
</html>