Bellringer
Send me a picture of someone who has a birthday today
Subject: Name
Open Khan Academy in a new tab, keep your email active on the browser!
click on login
Click on home,
start learning,
Go to Computing
Go To Computer Programming
We will be working on the unit:
Intro to HTML
Show your finished list to a helper to get your points
Hint:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Project: Travel webpage</title>
</head>
<style>
body {
background-color: rgb(255, 222, 255);
}
</style>
<body>
<h1><em> Visit Iceland! </em> </h1>
<img src="https://www.kasandbox.org/programming-images/landscapes/mountain_matterhorn.png" width="293" height="199">
<ul>
<li>Beautiful Landscape</li>
<li>Beautiful People</li>
<li>A Wide Range of Activities and sights to see!</li>
</ul>
<h2>Wild Nature and Wild Cities </h2>
<ul>
<li> Geysers, Volcanoes, Mountains, and fields of Permafrost!</li>
<li>world renowned Nightlife in reykjavik, the Capital</li>
<li>5 <strong>Michelin Star</strong> Restaurants in Downtown Reykjavik!</li>
</ul>
<h2>Come for the Incredible Nature, Stay for the Incredible People! </h2>
<img src="https://www.kasandbox.org/programming-images/seasonal/fireworks-over-harbor.png" width="294" height="193">
<h3><em>Trully a Once in a Lifetime Expirience!</em></h3>
</body>
</html>