Open link here
https://apilkc.github.io/archiquiz.github.io/
An interactive quiz application testing knowledge of architecture and urban design across 5 progressive levels.
- 4 Progressive Levels: From Basic Definitions to Expert Level
- Randomized Questions: Fresh questions every time you play
- Score Tracking: Points reset on wrong answers for added challenge
- Streak System: Build momentum with consecutive correct answers
- No Repetition: Questions don't repeat until all are completed
- Responsive Design: Works on desktop and mobile devices
- Make sure you have Python installed
- Open terminal/command prompt in the quiz folder
- Run:
python3 -m http.server 8000 - Open your browser and go to:
http://localhost:8000
- Install Node.js if you don't have it
- Install a simple server:
npm install -g http-server - Run:
http-server -p 8000 - Open your browser and go to:
http://localhost:8000
- Make sure you have PHP installed
- Run:
php -S localhost:8000 - Open your browser and go to:
http://localhost:8000
- Find your IP address:
- Mac/Linux:
ifconfig | grep "inet " | grep -v 127.0.0.1 - Windows:
ipconfig | findstr "IPv4"
- Mac/Linux:
- Share the URL:
http://YOUR_IP_ADDRESS:8000 - Anyone on the same WiFi can access it
For sharing over the internet, you can use:
- ngrok:
ngrok http 8000(creates a public URL) - Heroku: Deploy as a web app
- GitHub Pages: Host the static files
- Netlify: Drag and drop deployment
index.html- Main quiz interfacestyles.css- Styling and animationsscript.js- Quiz logic and functionalitycorrected_level_1_questions.json- Quiz questions databaseREADME.md- This instruction file
- Start Quiz - Click "Start Quiz" on the welcome screen
- Answer Questions - Select from 4 multiple choice options
- Progress Through Levels - Answer all 5 questions correctly to advance
- Track Progress - Monitor your score, streak, and level progress
- Complete the Challenge - Finish all 5 levels to become an Architecture Master!
Edit corrected_level_1_questions.json to add more questions:
{
"id": 31,
"level": 1,
"category": "Basic Definitions",
"question": "Your question here?",
"options": {
"A": "Option A",
"B": "Option B",
"C": "Option C",
"D": "Option D"
},
"correct_answer": "A"
}Edit styles.css to customize colors, fonts, and layout.
The quiz is fully responsive and works great on:
- Smartphones
- Tablets
- Desktop computers
- Any modern web browser
Test your architecture knowledge and challenge your friends to beat your score!