This lab introduces you to the fundamental structure of an HTML document. You'll create a simple webpage for a pet bakery and understand the essential tags used in HTML.
- File Navigation: Navigate to index.html.
- Boilerplate Generation: Use shortcuts to generate HTML boilerplate.
- Giving the document a title: Use the given title for the document.
- Header Tags Insertion: Insert appropriate header tags based on their function.
- Paragraph Tag Insertion: Insert a paragraph tag with the given copy.
- List Tag Insertion: Create an unordered list of products.
Attention: When you complete a task, put an x
in the middle of the brackets to mark it off your ToDo list.
- Navigate to the
index.html
file. - In line 1, type an exclamation point, wait to see the prompt, then hit
enter
. - When you have your boilerplate code, in the
head
element, locate thetitle
element and enterPet Bakery
. - Inside the body tag, put the appropriate header tag for a main header with the copy:
Welcome to Our Pet Bakery
. - Under your main header, insert a paragraph tag with this copy:
We offer a variety of healthy and delicious treats for your pets.
- Under that, insert a subheader with the copy:
Our Products
. - Under the subheader, create an unordered list with the following items:
Dog Biscuits
,Cat Treats
,Bird Seed Bars
.
🎊 Fantastic work! You just finished your first HTML coding lab. 🎊
🛑 Only use this as a reference 🛑
💾 Not something to copy and paste 💾
Note: This lab references a solution file located here (link not shown).