<div style="text-align;">this is text</div>
<span style="font-size: red; color: blue;background color: red;">This is text</span>
example
1. text align
<pre><div style="text-align: center;">This text is in middle</div>
This text is in middle
2. font-size and color
<span style="color: blue; font-size: large;">this text is large and blue</span>
this text is large and blue
- fill color
code: <span style="background color: yellow;">This color is filled in yellow</span>
This color is filled in yellow
3.1 image without link
<img src="#"/>
result:
3.2 image with link
code: <a href="#"><img src="#"/></a>
result:
3.3 image with size, text-align and link
code: <div style="text-align: center;"><a href="#"><img heigh="350" src="#" width="350"/></a></div>