<h2>CatPhotoApp</h2>
<main>
<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>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
img src=“https://bit.ly/fcc-relaxing-cat 5.5k” alt=“fcc-relaxing-cat”//>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36 Edg/98.0.1108.56
<h2>CatPhotoApp</h2>
<main>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="ralxing cat">
<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>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
You need to understand something vital first. < This highlighted tag is the beginning of your html element. You then specify the type of element you are writing. In this case, it’s an image element written as img.
Now you add the behaviours of your html element or tag. These behaviours are called attributes. All attributes are written as follows… attr="behaviour of the attr".
Notice, the behaviours is written between two parenthesis and there aren’t any -.
If you continue to have issues understanding the concepts behind coding, Don’t be shy to look at the answer and work backwards until you understand the what you did wrong.
Also, download VSCode, it will assist you with some syntax error correction.