Create the maintenance.html project file with basic HTML boilerplate
Concept
Every web project starts with an HTML file. Today you are creating a brand new project — the Aircraft Maintenance Checklist. Just like on Day 1 when you created index.html for your first page, you will create maintenance.html as the main file for this project. The boilerplate gives you the basic HTML structure that every web page needs.
Apply
Create a new file called maintenance.html in your aviation-project folder with the basic HTML boilerplate.
Prompt
Expected Result
You should have a file called maintenance.html with the HTML boilerplate. When you open it in your browser, you see a blank white page with the tab title "Aircraft Maintenance Checklist". There is an empty h1 element ready for content.
Troubleshooting
- • If the tab title does not show "Aircraft Maintenance Checklist", make sure the <title> tag is inside the <head> section, not the <body>.