Update typography
This commit is contained in:
parent
e12be7b9fe
commit
9d7b40e9ca
4 changed files with 129 additions and 68 deletions
|
@ -39,7 +39,6 @@ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
|
|||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
|
||||
|
||||
|
||||
#### Forth <h4>-Heading
|
||||
|
||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
|
@ -54,13 +53,16 @@ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
|
|||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
|
||||
|
||||
|
||||
## Typographical Elements
|
||||
|
||||
Here you'll find the [complete list of HTML5-Tags][1] and this is how they look like.
|
||||
|
||||
|
||||
### <hr> Horizontal Lines
|
||||
<hr>
|
||||
|
||||
|
||||
### <pre> Displaying Code
|
||||
~~~
|
||||
<html>
|
||||
|
@ -71,6 +73,7 @@ Here you'll find the [complete list of HTML5-Tags][1] and this is how they look
|
|||
</html>
|
||||
~~~
|
||||
|
||||
|
||||
### <blockquote> Quotation
|
||||
<blockquote>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</blockquote>
|
||||
|
||||
|
@ -123,67 +126,157 @@ Pancetta flank sirloin pork
|
|||
### <em>
|
||||
Let's *emphasize* how important responsive webdesign is.
|
||||
|
||||
|
||||
|
||||
### <strong>
|
||||
This looks like **bold** text.
|
||||
|
||||
|
||||
|
||||
### <small>
|
||||
<small>This is small text.</small>
|
||||
|
||||
|
||||
|
||||
### <s>
|
||||
|
||||
It's nice getting things done. Just strike through <s>finished tasks</s>.
|
||||
|
||||
|
||||
|
||||
### <cite>
|
||||
|
||||
<cite>Albert Einstein</cite>
|
||||
|
||||
|
||||
|
||||
### <q>
|
||||
|
||||
<q>Text Example</q>
|
||||
|
||||
|
||||
|
||||
### <dfn>
|
||||
|
||||
<dfn>Text Example</dfn>
|
||||
|
||||
|
||||
|
||||
### <abbr>
|
||||
|
||||
<abbr>Text Example</abbr>
|
||||
|
||||
|
||||
|
||||
### <time>
|
||||
|
||||
|
||||
|
||||
### <code>
|
||||
|
||||
Some `code: lucida console` displayed.
|
||||
|
||||
|
||||
|
||||
### <var>
|
||||
|
||||
<var>Text example.</var>
|
||||
|
||||
|
||||
|
||||
### <samp>
|
||||
|
||||
<samp>Text example.</samp>
|
||||
|
||||
|
||||
|
||||
### <kbd>
|
||||
|
||||
Copycats enjoy pressing <kbd>CMD</kbd> + <kbd>c</kbd> and <kbd>CMD</kbd> + <kbd>v</kbd>.
|
||||
|
||||
|
||||
|
||||
### <sub>
|
||||
|
||||
This text <sub>lays low</sub> and chills a bit.
|
||||
|
||||
|
||||
|
||||
### <i>
|
||||
|
||||
<i>Text example.</i>
|
||||
|
||||
|
||||
|
||||
### <b>
|
||||
|
||||
<b>Text example.</b>
|
||||
|
||||
|
||||
|
||||
### <u>
|
||||
|
||||
<u>Text example.</u>
|
||||
|
||||
|
||||
|
||||
### <mark>
|
||||
Let's <mark>mark this hint</mark> to give you a clue.
|
||||
|
||||
|
||||
|
||||
|
||||
### <br>
|
||||
|
||||
Need a break? I give you three!<br><br><br>
|
||||
|
||||
## Tables
|
||||
<table>
|
||||
<caption>
|
||||
<colgroup>
|
||||
<col>
|
||||
<tbody>
|
||||
<thead>Tabellenspalten enthalten.
|
||||
<tfoot>Tabellenspalten enthalten.
|
||||
<tr> Steht für eine Zeile mit Tabellenzellen.
|
||||
<td> Kennzeichnet eine einzelne Tabellenzelle.
|
||||
<th>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<caption>Cute Animals Per 1,000 People</caption>
|
||||
<tr>
|
||||
<th width="200">Table Header</th>
|
||||
<th>Table Header</th>
|
||||
<th width="150">Table Header</th>
|
||||
<th width="150">Table Header</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Content Goes Here</td>
|
||||
<td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
|
||||
<td>Content Goes Here</td>
|
||||
<td>Content Goes Here</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Content Goes Here</td>
|
||||
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
|
||||
<td>Content Goes Here</td>
|
||||
<td>Content Goes Here</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Content Goes Here</td>
|
||||
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
|
||||
<td>Content Goes Here</td>
|
||||
<td>Content Goes Here</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
<table>
|
||||
<caption>
|
||||
<colgroup>
|
||||
<col>
|
||||
<tbody>
|
||||
<thead> Tabellenspalten enthalten.
|
||||
<tfoot> Tabellenspalten enthalten.
|
||||
<tr> Steht für eine Zeile mit Tabellenzellen.
|
||||
<td> Kennzeichnet eine einzelne Tabellenzelle.
|
||||
<th>
|
||||
|
||||
|
||||
|
||||
|
|
Reference in a new issue