The Fullstack Zoo just hired some zookeeper interns who will be helping out for the next few months. They've contracted your team to build a web page that will help the new interns identify each animal and understand their needs and behaviors.
- Create a new repository using this one as a template.
- Clone your new repository into a
block04
folder in yourcoursework
folder. - Open the cloned folder with VS Code.
Here are the types of animals at the zoo, along with their names:
- Bears
- Ollie
- Mona
- Giraffes
- Frankie
- Coconut
- Lions
- Mella
- Karl
- Monkeys
- Cookie
- Earl
- Banana Pudding
- Alligators
- Wren
- Aspen
- Mika
- Create an
index.html
file. - Set the
doctype
tohtml
. - Set the
html
language toen
. - Add a
head
and abody
. - In the
head
, set thetitle
of the web page toFullstack Zoo
. - Add a
main
element to thebody
. - Add an
h1
to the main with the textWelcome to Fullstack Zoo
. - Underneath the
h1
, add asection
for each type of animal. Each section should contain:- a corresponding heading
- an unordered list of the animal names
- an image with alt text
- a link to an external fact page where a zookeeper can find more information
Note
You can use fake links and images! We are checking your ability to write HTML, not your ability to find animal facts.
Submit the link to your public GitHub repository.