Welcome to my personal website project! This site is built using the Editorial template by HTML5 UP, a versatile and visually appealing template perfect for personal web pages.
- Source: Editorial template by HTML5 UP
- Usage: Freely available for both personal and commercial use.
- License: Creative Commons Attribution 3.0 Unported (CCA 3.0).
- More Information: Please see the included license file for detailed terms and conditions.
To test the website on your local machine, you can set up a simple HTTP server. Here's how you can do it:
-
Launch the HTTP Server: Open your terminal or command prompt and run the following command in your project's root directory:
python3 -m http.server
This will start a local web server on port 8000.
-
Accessing the Website: Once the server is running, you can view the website by visiting:
http://localhost:8000
in your web browser. Navigate to the specific HTML file you wish to view.
- Ensure you have Python installed on your system to use the
python3 -m http.server
command. - If you encounter any issues or have specific requirements, refer to the official Python documentation for setting up a local HTTP server.