For this task, we are going to revisit the contact form again. First, you created this using pure HTML. Then, you styled it yourself using CSS.
Now, you wil implement the contact form using Bootstrap components. Aim to use zero custom CSS and only Bootstrap components and utlities.
Throw in a navbar and footer to add some polish, but keep the rest of the page much the same. For this, check out Bootstrap forms.
Instructions:
Open your project-17-bootstrap folder using VS Code
Fetch any changes using GitHub in the terminal. E.g. git fetch
If there are any changes, we need to pull them. E.g. git pull
Create the task2.html file using the terminal.
Remember to commit and push your code when done! Here are the terminal commands to do so:
Commit your changes with a meaningful message:
git commit -am "Your message here"
Note: The -a flag automatically stages all modified files before committing, -m is to add a message.
Push your changes to GitHub:
git push origin main