-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
47 lines (43 loc) · 2.22 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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Mental Map</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Quick Mental Map</h1>
<h6>The To-Do List without the pressure of one!</h6>
<p>
While I use Notion & Todoist as to-do lists for university and personal tasks, I find that I often just need to jot down things quick so I know how to structure my time in a pinch, but I don't want to formally add it to my to-do list.
As of now, the utility is actually just the native Apple Notes app on the Mac, or on my iPhone, which is when I considered, "Why not make a web tool for everyone to use?", which is where this idea took birth.
</p>
<h3>Objectives</h3>
<p>These are the 2 objectives I hope to accomplish with this tool:</p>
<h4>Simplicity</h4>
<p>I want it to be as simple as just using the Notes app on your phone.</p>
<h4>Learning and Implementation</h4>
<p>
My bigger reason, is that I want to upskill myself in more things. I started by learning React.
I wanted to implement my learnings here, but upon realizing that I can still achieve the desired output without it, I've intentionally chosen to avoid it here, and instead just focus on completing this project.
I still hope to implement React learnings very soon, but I realized avoiding a couple things meant I just procastinated on this project, delaying it more than necessary for what genuinely is rather simple.
</p>
<div id="root">
<textarea name="quick-mental-map" id="jot-notes"></textarea>
<button onclick="clearItOut()">Clear Board</button>
</div>
</body>
<footer>
<a href="https://www.linkedin.com/in/rishi-juneja-04824026a/" style="align-content: center;">Rishi's LinkedIn</a>
<br>
<a href="https://github.com/rj-here" style="align-content: center;"> Rishi's GitHub</a>
<br>
<a href="https://rj-here.github.io/personalpage/index.html">Rishi's Page</a>
<p>
Last committed on 30th April, 2026.
<br>
<a href="https://github.com/rj-here/quick-mental-map">The GitHub Repository</a>
<br>
© 2026 Rishi
</p>
</footer>