-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 1.67 KB
/
index.html
File metadata and controls
67 lines (64 loc) · 1.67 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
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
<html>
<head>
<meta />
<meta />
<title>Document</title>
</head>
<body>
<!-- Navigation Sidebar: Contains the logo, navigation links for boards, and theme toggle. -->
<nav>
<div>
<h4>ALL BOARDS (1)</h4>
<button>Launch Career</button>
</div>
</nav>
<!-- Main Layout: Header with board title, add task button, and main content area for task columns. -->
<div>
<header>
<div>
<h2>Launch Career</h2>
</div>
</header>
<div>
<main>
<!-- Task Columns: Display tasks grouped by status (TODO, DOING, DONE). -->
<div>
<div>
<span></span>
<h4>TODO</h4>
</div>
<!-- Tasks container for TODO -->
<div>
<div>Launch Epic Career 🚀</div>
<div>Learn Data Structures and Algorithms 📚</div>
</div>
</div>
<!-- DOING Column -->
<div>
<div>
<span></span>
<h4>DOING</h4>
</div>
<!-- Tasks container for DOING -->
<div>
<div>Master JavaScript 💛</div>
<div>Keep on Going 🏆</div>
</div>
</div>
<!-- DONE Column -->
<div>
<div>
<span></span>
<h4>DONE</h4>
</div>
<!-- Tasks container for DONE -->
<div>
<div>Contribute to Open Source Projects 🌐</div>
<div>Build Portfolio Projects 🛠️</div>
</div>
</div>
</main>
</div>
</div>
</body>
</html>