What does the slash mean/do <\html> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does the slash mean/do <\html>

14th Nov 2016, 7:04 PM
zazzer
3 Answers
+ 3
slash is used to indicate closing tag.
14th Nov 2016, 7:12 PM
Sandeep Chatterjee
0
HTML elements with no content are called empty elements. <br> is an empty element without a closing tag(the <br> tag defines a line break). Empty elements can be "closed" in the opening tag like this: <br />. HTML5 does not require empty elements to be closed.
14th Nov 2016, 10:17 PM
Abdelaziz Abubaker
Abdelaziz Abubaker - avatar
0
in HTML, forward slash is used to close a tag <b> Bold Text</b> and <b>Bold</b> Text are different
16th Nov 2016, 9:13 AM
Core i9
Core i9 - avatar