+ 6
What is opening Tag of HtML?
Plz explain!!!
10 Antworten
+ 5
Thank You Aquarius
I can't write an email... I must give a mobile phone number, but I have no :(
+ 3
The html opening tag is this:
<html>
the closing tag is this
</html>
make sure its not in caps or it wont work. Say tjing goes for the head tag and the body tag.
+ 3
no problem, i rather not text to a specific number. Can you create a google email?
+ 3
but if your using HTML5, you must write <!DOCTYPE html> first.
+ 3
<!doctype html> is the opening
+ 2
:||||
evry web programer know this!!
the opening tag is <html> and the closing is </html>
if u wanna use html5 shoud write <!DOCTYPE html> first of page!!
+ 2
Relax, hes learning. so chill out
+ 1
Hi...
in html,
you must put evrything in to tags
opening tag and closeing tag .
you make this to let broweser know what is in it .
some opening tags don't need closeing tag . like
<p>.....</p> & <img..../>
img don't need closeing tag
i hope i explaned what you need
+ 1
Html tag
<html>………</html>
in html5
<!DOCTYPE html>……………</html>
+ 1
<html> is the opening tag while
</html> is the ending tag. Remember to give an ending tag else you would end up getting something wrong
NOTE: html tags are not case sensitive!
<HTML> means same as <html>.
So it doesn't matter how you write it. But for your simplicity you follow a general way of writing code.