-
Notifications
You must be signed in to change notification settings - Fork 86
/
index.html
69 lines (63 loc) · 2.1 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Management Dashboard</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<header>
<h1>My Dashboard</h1>
<nav>
<ul>
<li><a href="#tasks">Tasks</a></li>
<li><a href="#notes">Notes</a></li>
<li><a href="#weather">Weather</a></li>
<li><a href="#goals">Goals</a></li>
<li><a href="#passwords">Passwords</a></li>
<li><a><button id='darkBtn'>Dark Mode</a></li>
</ul>
</nav>
</header>
<main>
<section id="tasks">
<h2>Tasks</h2>
<input type="text" id="task-input" placeholder="New Task">
<button id="add-task-btn">Add Task</button>
<ul id="task-list"></ul>
</section>
<section id="notes">
<h2>Notes</h2>
<textarea id="note-input" placeholder="Write a note..."></textarea>
<button id="save-note-btn">Save Note</button>
<ul id="note-list"></ul>
</section>
<section id="weather">
<h2>Weather</h2>
<div id="weather-info">
<!-- Weather details will appear here -->
</div>
</section>
<section id="goals">
<h2>Goals</h2>
<input type="text" id="goal-input" placeholder="Set a goal">
<button id="add-goal-btn">Add Goal</button>
<ul id="goal-list"></ul>
</section>
<section id="passwords">
<h2>Passwords</h2>
<input type="text" id="website-input" placeholder="Website">
<input type="text" id="username-input" placeholder="Username">
<div style="position: relative;">
<input type="password" id="password-input" placeholder="Password">
<i class="fa fa-eye" data-toggle-password style="position: absolute; right: 10px; top: 20px; cursor: pointer;"></i>
</div>
<button id="add-password-btn">Add Password</button>
<ul id="password-list"></ul>
</section>
</main>
<script src="script.js"></script>
</body>
</html>