Hello folks. I got problem on this second stage. Need some help. thanks

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

html> 
<!DOCTYPE html>
html> <html/>

Your browser information:

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

Challenge: Step 1

Link to the challenge:

this is not a valid html tag
a tag needs an opening < then the element name, then the closing >

this is not a closing tag,
a closing tag needs a < followed by a / then the element name, and then a >

Add the <!DOCTYPE html> tag, and an html element with a lang attribute of en.

<!DOCTYPE html> must be top
html must have <>
how to use lang
example
<p name="value"></p>

use the valid html opening and closing tags .

Declare your document by < !DOCTYPE html >

then < html >
…< /html >

forward slash / must come before element in the closing tag.

alright. lemme check it again

hello Fried. Did you find any mistakes in this code?

<head>
    <litle>My First Web Page</litle>
    <style> 
    html {
        font-size: 23px 
    }

body {
background-color: #333;
color: whitesmoke;
}

Hello world!

This is my first web page.

Yeah. It has a spelling mistake “litle” instead of “title” and you haven’t close the font-size value with semicolon "; ":raised_hands:

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