Lumos
0
Q:

how to write <span>

The HTML <span> element is a generic inline container for
pieces of content, which does not inherently represent anything. 
It is mostly used for grouping and styling bits of content.
<span> is very much like a <div> element, but <div> is a 
block-level element whereas a <span> is an inline element.
21
A <span> element used to color a part of a text:
  
<span style="font-size:30px">&#9776; </span> 
<!-- &#9776 is a color value -->
12
//an example of an "out of context" way to change color of a text:
<span style="color: green"></span>
1
<span></span>
1

New to Communities?

Join the community