state the difference between block level and text level tags
Answers
Answered by
26
difference between block level and text level elements
Block Level
- Block level elements start with a newline and take up the full width available.
- <div>, <article>, <aside>, <nav>, <video>, <ol>, <section>, <table>, <ul>, <footer>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6> are block level elements.
Inline/Text Level
- Inline/Text level elements do not start with a newline and take up the necessory width.
- <span>, <a>, <br>, <button>, <em>, <i>, <img>, <strong>, <sub>, <sup> are Inline/Text level elements.
More Question:
HTML Meaning , What is html?
https://brainly.in/question/643321
Answered by
17
Difference between block-level and text level tags:
Block-level:
- It always starts on a new line as well as make the page full width from the left side to the right side.
- It can take up one or multiple lines and has a line is getting a break before and after element.
- <address> - Shows contact information is example of block-level element
Text level tag:
- It is related to style which defines character style.
- It is flow of the text without breaking of new line
- <img>, <span>, <strong>, <em>, <a> are the example of HTML of text level tags.
Learn more about text level tag
Explain block level and text level elements with example
https://brainly.in/question/9405433
Similar questions