scrimba
HTML & CSS
Build a Birthday GIFt Site
Use GitHub Desktop to publish your Birthday GIFt Site
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Use GitHub Desktop to publish your Birthday GIFt Site
AboutCommentsNotes
Use GitHub Desktop to publish your Birthday GIFt Site
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Happy+Monkey&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="header">
<h1>Today is Nick's birthday 🎉</h1>
<img id="bff-img" src="images/nick.jpg">
<h2 id="bday-age">24 years old</h2>
<h4 id="bday-date">01.11.2022</h4>
</div>

<div class="gift-section">
<h2 class="gift-title">Here's how happy I am for you today 🥳</h2>
<h3 class="gift-hint">(Hover over the gift)</h3>
<div class="gift-img" id="gift-img-happy"></div>
</div>

<div class="gift-section">
<h2 class="gift-title">How people react when you enter the room 😍</h2>
<div class="gift-img" id="gift-img-hot"></div>
</div>

<div class="gift-section">
<h2 class="gift-title">If I had to describe you with ONE word 👇</h2>
<div class="gift-img" id="gift-img-genius"></div>
</div>

<div class="gift-section">
<h2 class="gift-title">The only person as badass as you 💪</h2>
<div class="gift-img" id="gift-img-badass"></div>
</div>

<div class="gift-section">
<h2 class="gift-title">This one's for you, my friend 🥂</h2>
<div class="gift-img" id="gift-img-cheers"></div>
</div>

<p id="footer">Want to create your own Birthday GIFt site? Take <a href="https://scrimba.com/learn/htmlandcss" target="_blank">this HTML & CSS course.</a></p>

</body>
</html>
Console
/index.html
-5:16