+ 1
whats a tag
I dont now i just started and i suck
3 ответов
+ 2
HTML Tags
HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.
Most tags must have two parts, an opening and a closing part. For example, <html> is the opening tag and </html> is the closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character. I tend to interperet this as the "end" or "close" character.
There are some tags that are an exception to this rule, and where a closing tag is not required. The <img> tag for showing images is one example of this.
Each HTML file must have the essential tags for it to be valid, so that web browsers can understand it and display it correctly.
The rest of the HTML file can contain as little or as many tags as you want to display your content
Hope It's helpful...
+ 4
From your profile and post I assume you do not know HTML, I would suggest doing that course and possibly CSS before attempting to learn JS.
HTML course: https://www.sololearn.com/Course/HTML/?ref=app
CSS course: https://www.sololearn.com/Course/CSS/?ref=app
+ 1
Thanks turtle shell