Learn HTML by Building a Cat Photo App - Step 1

Hello Everyone,
This is my first time trying out coding. I have no idea what I am doing and any help with be great.

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <CatPhotoApp>CatPhotoApp</>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 1

Link to the challenge:

Hi there and welcome to our community!

This is an HTML element:

<h1>Hello World</h1>

It is defined by an opening tag, content and a closing tag. There are many different types of HTML elements, but this is a heading (h1) element, which will by default appear in a larger font-size than other elements.

Note the syntax for creating an HTML element:

  1. An opening tag, which has the element name enclosed within angle brackets (<h1>).
  2. The content of the element, which is what the user will see on screen (e.g. ‘Hello World’).
  3. A closing tag, which has the element name enclosed within angle brackets and includes a forward slash (</h1>).

For this first step, all you need to do is change the text content of the h1 element, to the specified text. Do not modify the opening or closing tags. I would hit the Reset button and then simply do that and you should pass the step.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.