Showtime CMS - How to use HTML tags
Tag | What it’s used for | Example | Screenshot |
---|---|---|---|
<p>…</p> | To denote a paragraph | <p>Albert Einstein was a German-born theoretical physicist who developed the theory of relativity, one of the two pillars of modern physics (alongside quantum mechanics). </p> |
|
<br> | To add a line break | His work is also known for its influence on the philosophy of science. <br> He is best known to the general public |
|
<dt>…</dt> | To bold a paragraph | <p><dt>Albert Einstein was a German-born theoretical physicist who developed the theory of relativity, one of the two pillars of modern physics (alongside quantum mechanics).</dt> </p> |
|
<i>… </i> | To make text italic | Albert Einstein was a Specializing in physics and mathematics, he received his academic teaching diploma from the <i>Swiss Federal Polytechnic School</i> (German: eidgenössische polytechnische Schule) in Zürich in 1900.
|
|
<ul> <li>…</li> <li>…</li> <li>…</li> </ul>
| To create a bullet list | Collaboration with other scientists: |
|
<ol> <li>…</li> <li>…</li> <li>…</li> </ol> | To create a numbered list | <ol> |
|
<dl> <dt>Term</dt> <dd>- description</dd> <dt>Term</dt> <dd>- description</dd> </dl> | To list terms and descriptions | <dl> |
|
Side by side: HTML and text on the page.