A simple, elegant web page application with a homepage and periodic table viewer.
- Clean and modern design
- Responsive layout
- Interactive periodic table
- Easy to deploy on Render.com
- Python Flask backend
- Install Python dependencies:
pip install -r requirements.txt- Run the Flask server:
python app.py- Open your browser and visit:
http://localhost:5000
- Push this code to your GitHub repository
- Go to Render.com and sign in
- Click "New +" and select "Web Service"
- Connect your GitHub repository:
https://github.com/sufyanaslam44/Pro.FunMan - Configure the service:
- Name: pro-funman (or any name you prefer)
- Environment: Python
- Build Command:
pip install -r requirements.txt - Start Command:
gunicorn app:app
- Click "Create Web Service"
Your app will be deployed and accessible at: https://your-app-name.onrender.com
Pro.FunMan/
├── index.html # Homepage
├── pt.html # Periodic table page
├── app.py # Flask backend server (Python)
├── requirements.txt # Python dependencies
├── Procfile # Render.com deployment config
├── runtime.txt # Python version
└── README.md # Documentation
- Home (
/) - Welcome page with navigation - Periodic Table (
/pt.html) - Interactive periodic table with all 118 elements
MIT