HTML element | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

HTML element

What is called to the HTML elements with no content?

26th Jan 2018, 2:10 AM
Aubrey Lynn Austria
Aubrey Lynn Austria - avatar
4 Answers
+ 6
Empty tags.
26th Jan 2018, 2:40 AM
Harsh
Harsh - avatar
+ 2
Empty tags
1st Feb 2018, 3:28 AM
Aubrey Lynn Austria
Aubrey Lynn Austria - avatar
+ 1
elements with no content are tags that no need to have closing tags
15th Mar 2018, 3:32 AM
⏩▶Clau◀⏪
⏩▶Clau◀⏪ - avatar
0
HTML Elements An HTML element usually consists of a start tag and end tag, with the content inserted in between: <tagname>Content goes here...</tagname> The HTML element is everything from the start tag to the end tag: <p>My first paragraph.</p> Start tag Element content End tag <h1> My First Heading </h1> <p> My first paragraph. </p> <br> HTML elements with no content are called empty elements. Empty elements do not have an end tag, such as the <br> element (which indicates a line break).
1st Feb 2018, 6:53 AM
stalin samraj
stalin samraj - avatar