Computer Science, asked by Vasana4071, 10 months ago

Which html tag does nothing to the text it surrounds and has as its sole purpose to create a "handle" so as to be able to apply css to the text?

Answers

Answered by Anonymous
3

Answer:

Span tag <span>

Explanation:

A span tag is used to group elements for styling purposes, a better way to use them when there is no other semantic component. The span is very similar to the div tag, but the div tag is block-level and the span tag is inline. The span tag is used for inline component grouping to build a "tag" so that css can be added to the text.

The < span > tag is used in a document to group inline objects. The < span > tag alone does not provide any graphical adjustment. The < span > tag provides a way of applying a link to a section of a document or message.

Answered by mfsch14
0

Span tag itself don't do any changes to the fonts, but we can apply css or js after span tag been implemented in the tag.

Similar questions