-
Notifications
You must be signed in to change notification settings - Fork 193
Closed
Description
What's the current process?
The journey.html file contains inline <style> blocks, making the file lengthy and mixing structure with presentation. Other pages in the project already follow the practice of keeping styles in separate CSS files.

What can be improved?
- Extract the inline styles from journey.html into a dedicated CSS file (e.g., journey.css).
- Ensure journey.html only handles content and structure, while CSS files handle styling.
- Maintain consistency by following the same structure as the other pages.
How will this help?
- Keeps the HTML file cleaner and easier to read.
- Centralizes styling, making it easier to update or fix design issues in the future.
- Aligns with best practices and ensures consistency with the rest of the codebase.