A simple website built with Flask, featuring a home page, founder page, and products page.
- Responsive design
- Multiple pages using Flask routing
- Clean, modern UI
- Clone this repository
- Create a virtual environment:
python -m venv venv - Activate the virtual environment:
- Windows:
venv\Scripts\activate - Mac/Linux:
source venv/bin/activate
- Windows:
- Install dependencies:
pip install -r requirements.txt
- Make sure your virtual environment is activated
- Run the Flask application:
python app.py - Open your browser and navigate to
http://127.0.0.1:5000/
app.py- Main Flask application filetemplates/- HTML templatesstatic/- Static files (CSS, JavaScript, images)css/- CSS stylesheetsjs/- JavaScript filesimg/- Image files
Feel free to modify the templates, styles, and content to fit your needs.