Create a terminal-style website with the following specifications:
1. Appearance:Design: Mimic a macOS terminal windowColor scheme: Dark background (#014034) with light green text (#80BF7E and #C2D9C1)Window style: Include a header with close, minimize, and maximize buttonsFont: Use a monospace font like 'Menlo' or 'Monaco'
2. Functionality:Implement a file system structure with the following folders and links:newsletters[Your newsletter name] -> [URL][Another newsletter] -> [URL]personal-websitemain -> [Your main website URL][Additional page name] -> [URL][Another page name] -> [URL][Another category][Item name] -> [URL][Another item] -> [URL]Commands to implement:ls: List directory contentscd: Change directory (support 'cd ..', 'cd ~', and 'cd [foldername]')open: Open links in new tabs (support both 'open [number]' and 'open [name]')clear: Clear the screenhelp: Show available commandsabout: Display information about the website creator
3. User Experience:Start with a welcome message introducing yourself and the purpose of the terminalAutomatically run 'ls' after the welcome messageImplement command history (accessible with up/down arrow keys)Add a typing animation effect for all output textDisplay the current directory in the prompt (e.g., user@website:~/foldername $)Provide help text in each directory explaining how to open links
4. Additional Features:Ensure the website is responsive and works on mobile devicesImplement error handling for invalid commands or inputs
5. Technical Requirements:Create a single HTML file containing all HTML, CSS, and JavaScriptEnsure compatibility with modern web browsersOptimize for quick loading and smooth performance
Please provide the complete HTML file for this terminal-style website, ready to be deployed on a platform like Netlify. Include comments in the code to explain key functionalities.

