#๐ First Actual day learning HTML. am i cooked?๐
27 messages ยท Page 1 of 1 (latest)
@kindred elm
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
This is not a python question.
ik i just wanted some feedback.
u asked a non-python question, thats p much the main thing wrong here
There's no <main>, there is only <body>. The <body> tag inside the <head> should be removed.
@kindred elm ^^
TIL i really dont know much about html5+
<html>
<head>
</head>
<body>
</body>
</html>
you can't put something that is suposed to be in body, in head, and main doesn't exist. You usually put your code in body. In head, you can put a link command that connects your css code to your html code
thanks but I still dont know about where i should put these tags tbh. im confuzzled about where they need and should go. if i could find a yt video explaining how to input the tags that would be helpful
bro i just started HTML and tbh idk what the hell im doing
there is a <main> semantic tag in HTML5
There is? Ouch.
man what da hell
i dont see any <body> tag inside the <head> tag, can you circle where you see that please
i mean i only have the tag where the <title> is
Yes, misread things. This below. normally the body is after the head.
i dont exactly know what you mean
oh i see
Something like:
<html>
<head>
<title>title of the doc</title>
</head>
<body>
text of the document
</body>
</html>
Basicly the head holds metadata (title, properties etc) and the body holds the text.
This might be a bit long, but it's the reference, for HTML 4 at least. A decent place to start.
https://www.w3.org/TR/html401/
thanks alot ill take a look at this
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.