Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

HTML5: Create a \"made up FAQ page with a CSS page for my group project in my we

ID: 3767537 • Letter: H

Question

HTML5:

Create a "made up FAQ page with a CSS page for my group project in my web-page design class. The theme of ours is a zoo called Antarctica's First Zoo. The zoo will contain penguins, whales, albatrosses, krill, and polar bears. The tile should go across the top of the page.

FAQ Page - Responsible for made up (possibly funny) FAQ about the park with info/pictures and working links back to main page.The background of the page should be colored. If possible the images should be rollover images.

Explanation / Answer

<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-color:blue;
}
h1
{
color:blue;
text-align:center;
}
p
{
font-family:”times new roman”;
font-size:30px;
}
<h1>Antarctica's First Zoo</h1>
<p><b>penguin,whales,albatrosses,krill and polar bears</b><p>
<img src=“polarbears.jpg” style=“width:200px;height:100px;”>
<img src=“whales.jpg” style=“width:500px;height:400px;”>
<img src=“penguin.jpg” style=“width:250px;height:300px;”>
<img src=“albatrosses.jpg” style=“width:450px;height:350px;”>
<img src=“krill.jpg” style=“width:230px;height:250px;”>
</style>
</head>
</body>
</html>