Personal website hosted on GitHub Pages.
.
├── assets/
│ ├── css/ # Stylesheet files
│ ├── images/ # Image assets
│ └── js/ # JavaScript files (for future use)
├── favicon/ # Favicon and related icons
├── index.html # Main webpage
├── CNAME # Custom domain configuration
└── README.md # This file
To test the site locally, you can use Python's built-in HTTP server:
python -m http.server 8000
Then visit http://localhost:8000
in your web browser.