Create your first HTML file and learn essential HTML structure. You’ll use basic tags to set up the skeleton of a web page and add your name and a short introduction.
- Create a file named
index.html. - Use the following tags:
<!DOCTYPE>,<html>,<head>,<body>. - Set the page title in the
<head>. - Add an
<h1>heading with your name. - Write a short paragraph about yourself in the
<body>. - Save the file and open it in your browser to check your work.
- Correct HTML document structure
- Appropriate use of
<title>in<head> - Heading with your name
- Paragraph introducing yourself
- File opens and displays correctly
- Grammar is correct