• Cool Collaborators• 9 min read
Los Angeles
Roadtrip through LA and learn UI while you're there!
Starting our LA roadtrip adventure…
🎯 Your Personalized LA Experience
Based on your itinerary preferences, here are your selected destinations:
Los Angeles
Griffith Observatory Button Lesson
Step 1: Set Up Your HTML File
First, create a new file and save it as button.html. Every HTML file needs this basic structure:
<!DOCTYPE html>
<html>
<head>
<title>My Button</title>
</head>
<body>
</body>
</html>
What this means:
<!DOCTYPE html> tells the browser this is an HTML file
<html> wraps everything
<head> contains information about the page
<body> is where your visible content goes
Step 2: Create Your First Button
Inside the <body> tags, add a button:
<body>
<button>Click Me!</button>
</body>
Step 3: Make the Button Do Something
Add an onclick attribute to make something happen when clicked:
<button onclick="alert('Hello!')">Click Me!</button>
Here's an example button!
Button Design Tips
What is a Button?
A button triggers an action when clicked. Think of Griffith Observatory's telescope controls—clear, responsive, and purposeful. Good buttons work the same way.
The 3 Button States
Default (Observatory at Rest) - How it looks normally—waiting to be clicked.
Hover (Dome Opening) - When you move your mouse over it—shows it's interactive.
Clicked (Telescope Activates) - The moment you click—confirms the action.
5 Design Tips
1. Make it Bold
Like the iconic dome on Mount Hollywood—easy to see. Use size and contrast.
2. Use Clear Labels
"View Stars" is obvious—your button should be too. "Buy Now" not "Click Here". "Sign Up" not "Submit".
3. Show it's Clickable
The dome looks different from the building. Add rounded corners or shadows. Use hover effects.
4. Create Contrast
White dome against dark sky—maximum visibility. Button color should pop from the background.
5. Size Matters
Big enough to see and click easily. At least 44x44px on mobile.
Button Types
Primary: Most important action (the main telescope)
Secondary: Supporting actions (smaller domes)
Tertiary: Minor actions (information plaques)
Common Mistakes
1. Vague labels like "Click" or "Submit"
2. No hover effect
3. Too many bold buttons
4. Too small to tap
5. Unclear what happens when clicked
Quick Tips
- Use action verbs: "Explore," "Discover," "View"
- One primary button per section
- Make it look clickable
- Test on mobile
🧠 Quick Quiz: Build Your Own Button!
Fill in the blanks to complete your HTML file. If you get both right, your button will appear!
Los Angeles
Hollywood Sign Button Lesson
Step 1: Set Up Your HTML File
First, create a new file and save it as button.html. Every HTML file needs this basic structure:
<!DOCTYPE html>
<html>
<head>
<title>My Button</title>
</head>
<body>
</body>
</html>
What this means:
<!DOCTYPE html> tells the browser this is an HTML file
<html> wraps everything
<head> contains information about the page
<body> is where your visible content goes
Step 2: Create Your First Button
Inside the <body> tags, add a button:
<body>
<button>Click Me!</button>
</body>
Step 3: Make the Button Do Something
Add an onclick attribute to make something happen when clicked:
<button onclick="alert('Hello!')">Click Me!</button>
Here's an example button!
Button Design Tips
What is a Button?
A button triggers an action when clicked. Think of the Hollywood Sign—bold, impossible to miss, and tells you exactly what it is. Good buttons work the same way.
The 3 Button States
Default (Sign at Dawn) - How it looks normally—waiting to be clicked.
Hover (Spotlights On) - When you move your mouse over it—shows it's interactive.
Clicked (Lights Flash) - The moment you click—confirms the action.
5 Design Tips
1. Make it Bold
Like 45-foot tall letters—easy to see. Use size and contrast.
2. Use Clear Labels
"HOLLYWOOD" is obvious—your button should be too. "Buy Now" not "Click Here". "Sign Up" not "Submit".
3. Show it's Clickable
The sign looks different from the hills. Add rounded corners or shadows. Use hover effects.
4. Create Contrast
White letters on brown hillside—maximum visibility. Button color should pop from the background.
5. Size Matters
Big enough to see and click easily. At least 44x44px on mobile.
Button Types
Primary: Most important action (the main sign)
Secondary: Supporting actions (smaller signs)
Tertiary: Minor actions (trail markers)
Common Mistakes
1. Vague labels like "Click" or "Submit"
2. No hover effect
3. Too many bold buttons
4. Too small to tap
5. Unclear what happens when clicked
Quick Tips
- Use action verbs: "Download," "Shop," "Join"
- One primary button per section
- Make it look clickable
- Test on mobile
🧠 Quick Quiz: Build Your Own Button!
Fill in the blanks to complete your HTML file. If you get both right, your button will appear!
UNIVERSAL STUDIOS
HOLLYWOOD
Los Angeles
Universal Studios Button Lesson
Step 1: Set Up Your HTML File
First, create a new file and save it as button.html. Every HTML file needs this basic structure:
<!DOCTYPE html>
<html>
<head>
<title>My Button</title>
</head>
<body>
</body>
</html>
What this means:
<!DOCTYPE html> tells the browser this is an HTML file
<html> wraps everything
<head> contains information about the page
<body> is where your visible content goes
Step 2: Create Your First Button
Inside the <body> tags, add a button:
<body>
<button>Click Me!</button>
</body>
Step 3: Make the Button Do Something
Add an onclick attribute to make something happen when clicked:
<button onclick="alert('Hello!')">Click Me!</button>
Here's an example button!
Button Design Tips
What is a Button?
A button triggers an action when clicked. Think of the Universal globe—bold, recognizable, and inviting. Great buttons work the same way!
The 3 Button States
Default (Globe at Rest) - How it looks normally—waiting to be clicked.
Hover (Globe Glowing) - When you move your mouse over it—shows it's interactive.
Clicked (Globe Spinning) - The moment you click—confirms the action.
5 Design Tips
1. Make it Bold
Like the Universal globe—easy to spot from anywhere. Use size and contrast to make your button stand out.
2. Use Clear Labels
Say "Buy Tickets" not "Click Here". Say "Enter Park" not "Submit". Be specific about what happens when clicked!
3. Show it's Clickable
Add rounded corners, shadows, and hover effects. Your button should look inviting and interactive.
4. Create Contrast
Blue globe against bright sky = maximum visibility. Make your button color pop from the background.
5. Size Matters
Big enough to tap easily on mobile. Aim for at least 44×44 pixels.
Button Types
Primary: Most important action (the main entrance)
Secondary: Supporting actions (ride entrances)
Tertiary: Minor actions (information booths)
Common Mistakes
1. Vague labels like "Click" or "Submit"
2. No hover effect
3. Too many bold buttons competing
4. Too small to tap on mobile
5. Unclear what happens when clicked
Quick Tips
- Use action verbs like "Explore", "Buy", or "Enter"
- Keep one primary button per section
- And most importantly—make it look clickable!
🧠 Quick Quiz: Build Your Own Button!
Fill in the blanks to complete your HTML file. If you get both right, your button will appear!
Los Angeles
Hollywood Walk of Fame Button Lesson
Step 1: Set Up Your HTML File
First, create a new file and save it as button.html. Every HTML file needs this basic structure:
<!DOCTYPE html>
<html>
<head>
<title>My Button</title>
</head>
<body>
</body>
</html>
What this means:
<!DOCTYPE html> tells the browser this is an HTML file
<html> wraps everything
<head> contains information about the page
<body> is where your visible content goes
Step 2: Create Your First Button
Inside the <body> tags, add a button:
<body>
<button>Click Me!</button>
</body>
Step 3: Make the Button Do Something
Add an onclick attribute to make something happen when clicked:
<button onclick="alert('Hello!')">Click Me!</button>
Here's an example button!
MONROE
CHAPLIN
PRESLEY
JACKSON
Button Design Tips
What is a Button?
A button triggers an action when clicked. Think of the Hollywood Walk of Fame stars—each one catches your attention and invites interaction. Good buttons work the same way.
The 3 Button States
Default (Star on Sidewalk) - How it looks normally—waiting to be clicked.
Hover (Star Shining) - When you move your mouse over it—shows it's interactive.
Clicked (Camera Flash) - The moment you click—confirms the action.
5 Design Tips
1. Make it Bold
Like the gold stars on gray concrete—easy to see. Use size and contrast.
2. Use Clear Labels
Each star has a name—your button should be clear too. "Get Tickets" not "Click Here". "See Stars" not "Submit".
3. Show it's Clickable
Stars stand out from the sidewalk. Add rounded corners or shadows. Use hover effects.
4. Create Contrast
Gold against gray—maximum visibility. Button color should pop from the background.
5. Size Matters
Big enough to see and click easily. At least 44x44px on mobile.
Button Types
Primary: Most important action (the famous stars)
Secondary: Supporting actions (building entrances)
Tertiary: Minor actions (street signs)
Common Mistakes
1. Vague labels like "Click" or "Submit"
2. No hover effect
3. Too many bold buttons
4. Too small to tap
5. Unclear what happens when clicked
Quick Tips
- Use action verbs: "Explore," "Find," "Visit"
- One primary button per section
- Make it look clickable
- Test on mobile
🧠 Quick Quiz: Build Your Own Button!
Fill in the blanks to complete your HTML file. If you get both right, your button will appear!
AI-Powered Destination Finder
🗓 Best Time to Visit:
🌤️ Climate:
📍 Suggested Activities: