Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.07 KB

File metadata and controls

29 lines (22 loc) · 1.07 KB

Week 1: Introduction to HTML

Assignment 1: Your First Webpage

Overview

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.

Instructions

  1. Create a file named index.html.
  2. Use the following tags: <!DOCTYPE>, <html>, <head>, <body>.
  3. Set the page title in the <head>.
  4. Add an <h1> heading with your name.
  5. Write a short paragraph about yourself in the <body>.
  6. Save the file and open it in your browser to check your work.

Resources

Rubric/Style Guide

  • 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