HTML teksto formatavimas
Atminkite, kad pasiūlymo aprašymas, pridėtas naudojant merXu failą, gali būti sukurtas naudojant html kodą. Aprašymas, parengtas nenaudojant html, pasiūlyme bus rodomas kaip paprastas tekstas.
Priimtinos html žymos aprašyme:
<br>
new line of text
for example:
First line of text<br>second line of text<br>third line of text
First line of text
second line of text
third line of text
<p>...</p>
paragraph
for example:
<p>First paragraph</p>
<p>Second paragraph</p>
First paragraph
Second paragraph
<ul>
bullet list
for example:
<ul>
<li>first bullet</li>
<li>second bullet</li>
<li>third bullet</li>
<li>.....</li>
</ul>
- first bullet
- second bullet
- third bullet
- .....
<ol>
number list
for example:
<ol>
<li>first point</li>
<li>second point</li>
<li>third point</li>
<li>.....</li>
</ol>
- first point
- second point
- third point
- .....
<b> ... </b>
bold print
for example:
This is plain text, <b>this one will be bold</b>
This is plain text, this one will be bold
<u> ... </u>
underline print
for example:
This is plain text, <u>it will be underlined</u>
This is plain text, it will be underlined
<i> ... </i>
italics print
for example:
this is plain text, <i>this one will be italic</i>
this is plain text, this one will be italic