Ope1
September 24, 2024, 8:14am
1
Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<html>
<body>
<h1>CatPhotoApp</h1>
</h2>.Cat Photo
</body>
</html>
Your mobile information:
SM-G991U - Android 13 - Android SDK 33
Challenge: Learn HTML by Building a Cat Photo App - Step 2
Link to the challenge:
system
September 24, 2024, 8:14am
2
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
popeye
September 24, 2024, 8:19am
3
hi.you are mising a closing tag in h2.your opening tag h2 as well is wrong
1 Like
As Popeye mentions you put the closing tag first and no opening tag.
Always remember whatever the element you open with you must close it with .
The exception to this will be void element. These will be covered later in the course. In fact a couple of lessons on.
1 Like
Adran
September 24, 2024, 2:15pm
5
Your h2
element has an error
An h2
element has this syntax
<h2>Hello World</h2>
Your text should not have a period, it is just “Cat Photos”
Hope this helps,
Happy Coding!