A simple test server with a Hello World HTML page.
index.html: A styled Hello World webpage
-
Clone the repository:
git clone https://github.com/highbruh/test-server.git
-
Navigate to the project directory:
cd test-server -
Open the HTML file:
- Double-click on
index.htmlto open it in your default web browser - Or use a local server to serve the file
- Double-click on
If you have Python installed, you can quickly start a local server:
- Open terminal/command prompt in the project directory
- Run one of these commands:
- Python 3.x:
python -m http.server 8000 - Python 2.x:
python -m SimpleHTTPServer 8000
- Python 3.x:
- Open your browser and visit:
http://localhost:8000
Feel free to fork this repository and submit pull requests for any improvements.
This project is open source and available under the MIT License.