Using HTML-codes in product info areas
HTML codes can be used in almost all product fields. The advantage
of using HTML code is for example that you can highlight or bring
forward some parts of the info text.
Bold
<b>This text is bolded</b>
Result: This text is bolded
Italic
<i>This text is italic</i>
Result: This text is italic
Bold & Italic
<b><i>This text is bold and italic</i></b>
Result: This text is bold and italic
Line break
Text1 <br> Text2
Result:
Text1
Text2
Double line break
Text1 <br><br> Text2
Result:
Text1
Text2
Creating links
<a href="http://www.smilehouse.com">Read more about Smilehouse</a>
Result:
Read more about SmilehouseOpening link in a new window:
<a href="http://www.smilehouse.com" target="_blank">Read more about Smilehouse</a>
Result:
Read more about Smilehouse