What is a kind of one main element

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<P> <p>Kitty ipdum text</p> <p>Purr jump eat</p> </P>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 7.0; Infinix X559C Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Mobile Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements

Most of the elements you will first be using will have an opening tag < > and closing tag </ >.

Below is an example of an h1 element:

<h1>I am an H1 element</h1>

Below is a div element:

<div>I am an DIV element</div>

A main element would look similar:

<main>I am an MAIN element</main>