HTML - Week 2
In this lab you will fix a html file.
Let's pretend that you are helping a student that followed instructions. Your role is to resolve the isssue they are facing.
By the end of the lab you should have an index.html that looks like this in the browser:
- Fork the repository, and clone
- Install Live Server extension in VS code
- Do every exercice in their own branches
- Merge all of your work in a newly created branch and publish
Good luck and have fun building your recipe page! 🍽️
To get started with the lab, you need to fork the repository:
- Click on the Fork button at the top-right corner of the repository page.
- Clone your new forked repository on your laptop 2 ways possible to clone:
In order for the index.html to be fully fixed, it needs to respond to theses requirements:
Page setup:
- Have a title for the page's tab
- Put a title at the top of the document (highest level)
Now every instructions will consist of a section, with a title (second level), and the expected content:
- Make a plan of a week's day:
- second level title
- content:
- x-level heading: days of the weeks
- (x-1)-level title for each days
- x-level heading: days of the weeks
:warning The goal here is to use the correct heading levels. You must choose the levels considering the entire page, from the page title to the smallest titles.
- Have two images
- one that comes from an external url
- one that comes from the local /assets
- Make an ordered and unordered list
- Have two links
- one that redirects to the url, staying on the same tab
- one that will open the url's page in a new tab
- Have a form, with radio buttons, checkboxes, and text input:
When you are satified, just commit and push:
git add .
git commit
git push
🥳 Yeaaaaah !!!! You've reached the end of the lab :)