<aside>
</aside>
uhhh hahaha good question
i intend to go further into details, but as of now
you can check out this document created by the amazing and talented u/dudethatserin, NoteHost
a personal space, built in public for sharing reflections, creative projects, and growth.
soffcopy© 2021 by ryeones is licensed under cc by-nc 4.0
built with notion, via notehost
site navigation
navigate
resources
contact
const quotes = [ '“Dream big and dare to fail.” – Norman Vaughan', '“Do one thing every day that scares you.” – Eleanor Roosevelt', '“Hustle in silence and let your success make the noise.” – Unknown', ]; const quoteElement = document.createElement('div'); quoteElement.innerText = quotes[Math.floor(Math.random() * quotes.length)]; quoteElement.style.position = 'fixed'; quoteElement.style.bottom = '20px'; quoteElement.style.left = '20px'; quoteElement.style.padding = '15px'; quoteElement.style.backgroundColor = '#333'; quoteElement.style.color = '#fff'; quoteElement.style.borderRadius = '8px'; quoteElement.style.zIndex = '1000'; document.body.appendChild(quoteElement);