HTML5
Headings
<h1>Nadpis 1</h1>
Heading 1
<h2>Nadpis 2</h2>
Heading 2
<h3>Nadpis 3</h3>
Heading 3
<h4>Nadpis 4</h4>
Heading 4
<h5>Nadpis 5</h5>
Heading 5
Semantic tags
<strong>důležitý text</strong>
important text
<em>zvýrazněný text</em>
highlighted text
Formatting marks
normální písmo
normal font
<code>neproporcionální písmo</code>
neproporcionální písmo
The
<b></b>
and
<i></i>
tags exist in HTML5 only for backward compatibility. Use
semantic tags such as
<strong></strong>
or
<mark></mark>
, see below.
<b>tučné písmo</b>
Bold font (use
strong
instead !)
<i>kurzíva</i>
italics (use
em
!)
Paragraphs
<p>
Text odstavce
</p>
Paragraph text
Definition of abbreviations
<abbr title="Fakulta informatiky">FI</abbr>
<abbr title="Internet Engineering Task Force">IETF</abbr>
FI IETF
Citation
Více informací viz <cite>rfc2795</cite>.
See rfc2795 for more information.
References
<a href="https://www.fi.muni.cz/">
odkaz na web FI
</a>
<a href="https://www.fi.muni.cz/" class="no-ext">
odkaz bez ikony
</a>
Comments
normální text
<!-- zakomentovaný text -->
<!-- včetně <strong>značek</strong> -->
normální text
normal text normal text
Images
<img alt="Popis obrázku" src="/images/fi-logo.png" />
Lists
<p>Číselný seznam</p>
<ol>
<li>bod</li>
<li>bod</li>
<li>bod</li>
</ol>
Numeric list
- The Fellowship of the Ring
- The Two Towers
- Return of the King
<p>Bodový seznam</p>
<ul>
<li>bod</li>
<li>bod</li>
<li>bod</li>
</ul>
Points List
- The Unexpected Journey
- Shmak's Dragon Desert
- Battle of the Five Armies
<p>Definice</p>
<dl>
<dt>hobit</dt>
<dd>
Hobité jsou lidem podobné bytosti drobného vzrůstu ze Středozemě,
popsané v díle britského spisovatele J. R. R. Tolkiena.
</dd>
<dt>elf</dt>
<dd>
Elfové jsou Tolkienem popisováni jako nejsličnější
a nejmoudřejší ze všech ras Ardy.
</dd>
</dl>
Definition
- Hobbit
- a human-like creature of diminutive stature from Middle-earth, described in the works of British author J. R. R. Tolkien
- elf
- Elves are described by Tolkien as the fairest and wisest of all the races of Arda.
Tables
<table>
<tr>
<th>Zkratka</th>
<th>Význam</th>
</tr>
<tr>
<td>PNG</td>
<td>Portable Network Graphics</td>
</tr>
<tr>
<td>GIF</td>
<td>Graphics Intercharge Format</td>
</tr>
</table>
Abbreviation | Meaning of |
---|---|
PNG | Portable Network Graphics |
GIF | Graphics Intercharge Format |
Other tags
Split Text
<details>
<summary>Jak používat fakultní GitLab?</summary>
Odpověď naleznete v <a href="https://www.fi.muni.cz/tech/">technických informacích</a>
</details>
How to use the faculty GitLab?
Definition
<p>
<dfn>Počítač</dfn> je krabice ve tvaru krychle
(zřídka koule), do které se dá kopnout.
</p>
A computer is a cube-shaped box (rarely a sphere) that can be kicked.
<p>
<dfn>
<abbr title="Portable Document Format">PDF</abbr>
</dfn>
je souborový formát vyvinutý firmou Adobe pro ukládání
dokumentů nezávisle na softwaru i hardwaru.
</p>
PDF is a file format developed by Adobe to store documents independently of software and hardware.