This is a simple personal portfolio website built using Flask, HTML, and CSS as part of Task 6 for the Python Developer Internship.
- Home page with personal information
- Contact form
- Success page after form submission
- Basic styling using CSS
- Python
- Flask
- HTML
- CSS
PortfolioFlask/
├── app.py
├── templates/
│ ├── index.html
│ ├── contact.html
│ └── success.html
├── static/
│ └── style.css
└── README.md
- Create and activate virtual environment:
python -m venv venv
venv\Scripts\activate- Install Flask:
pip install flask- Run the app:
python app.py- Open in browser: http://127.0.0.1:5000/