/Responsive Web Design

1. Say Hello to HTML Elements

Welcome to freeCodeCamp's HTML coding challenges. These will walk you through web development step-by-step. First, you'll start by building a simple web page using HTML.

Do you see the code in your code editor that says <h1>Hello</h1>? That's an HTML element.

Most HTML elements have an opening tag and a closing tag.

Opening tags look like this <h1>. Closing tags look like this </h1>.

The only difference between opening and closing tags is the forward slash after the opening bracket of a closing tag.


Challenge

To pass the test on this challenge, change your h1 element's text to say "Hello World".


Prev: . Before you start

Next: 2. Headline with h2 element