Student starter code (30% baseline)
index.html- Main HTML pagescript.js- JavaScript logicstyles.css- Styling and layoutpackage.json- Dependenciessetup.sh- Setup scriptREADME.md- Instructions (below)💡 Download the ZIP, extract it, and follow the instructions below to get started!
By completing this activity, you will:
# Just open index.html in your browser
open index.html
# or double-click the file
Location: index.html - Inside the About section
Success Criteria:
<p></p>Hints:
Location: index.html - Inside the concepts-grid div
Success Criteria:
class="concept-card"<h3> heading with text "JavaScript"<p> paragraph describing what JavaScript doesHints:
Location: index.html - After the concepts section, before the footer
Success Criteria:
id="practice" and class="section"<h2> heading: "Practice What You've Learned"Hints:
<ul> and <li> tags for the unordered list#practice - make sure your id matches!target="_blank" to open links in a new tabLocation: style.css - Find the TODO comment for .section
Success Criteria:
Hints:
rgba(255, 255, 255, 0.95) for semi-transparent whitemargin: 2rem auto centers horizontally.header class for shadow inspirationborder-radius propertyLocation: style.css - Find the TODO comments for .concept-card
Success Criteria:
Hints:
linear-gradient(135deg, #667eea 0%, #764ba2 100%)color: whitetransition: transform 0.3s ease to enable smooth hover effectsLocation: style.css - Right after TODO 5
Success Criteria:
Hints:
transform: translateY(-5px) to move up (negative = up)Beginner:
Intermediate:
Advanced:
#667eea#764ba2rgba(255, 255, 255, 0.95)#333#667eeaStyles not showing?
style.css is in the same folder as index.html<link> tag in the HTML head is correctCards not displaying in a grid?
.concept-cardclass="concept-card".concepts-grid is working properlyNavigation links not working?
id="practice" and href="#practice")Before submitting, make sure:
Activity 01 - Introduction to Web Design W1: Front-end Design & User Experience Estimated Time: 45-60 minutes