Showtime CMS - How to use HTML tags

Tag

What it’s used for

Example

Screenshot

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:
<ul>
  <li>Einstein–de Haas experiment</li>
  <li>Schrödinger gas model</li>
  <li>Einstein refrigerator</li>
</ul>

 

<ol>

  <li>…</li>

  <li>…</li>

  <li>…</li>

</ol>

To create a numbered list

<ol>
  <li>Einstein–de Haas experiment</li>
  <li>Schrödinger gas model</li>
  <li>Einstein refrigerator</li>
</ol>

 

<dl>

  <dt>Term</dt>

  <dd>- description</dd>

  <dt>Term</dt>

  <dd>- description</dd>

</dl>

To list terms and descriptions

<dl>
  <dt>Einstein–de Haas experiment</dt>
  <dd>- Einstein and De Haas demonstrated that magnetization is due to the motion of electrons, nowadays known to be the spin. In order to show this, they reversed the magnetization in an iron bar suspended on a torsion pendulum.</dd>
</dl>

 

 Side by side: HTML and text on the page.