Markup and images
Example of displaying image with MARKUP only

â—Ž Notebook
Example of scaling image with combination of CSS and MARKUP
With Markup there is no option to further style the image. Between Markup and HTML an extra line is required otherwise image get not displayed. In this example image is sized to 50% and embedded in inline span block.
<span style="display:inline-block; width:50%">

</span>
â—Ž Notebook
Example of scaled images with text beetwenn
<span style="display:inline-block; width:40%">

</span>
<span style="display:inline-block; width:15%; padding: 1em;">
Text geht über mehrere Zeilen und muss mit einem span Block umschlossen werden.
</span>
<span style="display:inline-block; width:40%">

</span>
â—Ž Notebook
â—Ž Notebook