"BASIC HTML"
Absatz ↔ Parageraph | <p>Your Text</p> |
Zeilenumbruch ↔ Linebreak | Your Text<br> or <br /> |
<p style="background-color:DodgerBlue; color:White; width:300px;"> Your Parageraph </p> |
|
Your Parageraph |
Create a → n space |   |
Create a → m space |   |
      Create n spaces |
Create n spaces |
Horizontale Linie ↔ Horizontal Line | <hr> |
<hr color="COLOR" width="400px" size="3" align="right"> |
You can change "right" to "left" or "center". |
Fettschrift ↔ Bold Text | <b>Your Text</b> |
Kursiv ↔ Inverse | <i>Your Text</i> |
Unterstrichen ↔ Underlined | <u>Your Text</u> |
Durchstrichen ↔ Strikeout |
<s> |
Deleted Text ↔ Gelöschter Text |
<del> |
Schreibmaschine ↔ Teletype | <tt>Your Text</tt> |
small Text | <small>small Text</small> |
Big Text | <big>Big Text</big> |
Bigger Text | <big><big>Bigger Text</big></big> |
Sup (elemented) Text | <sup>Sup (elemented) Text</sup> |
Sub (elemented) Text | <sub>Sub (elemented) Text</sub> |
Your Text | <b><i><u>Your Text</u></i></b> |
HTML <h1> to <h6> tags
Source | Output |
---|---|
<h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6> |
Header 1Header 4Header 6 |
<h3 style="background-color:DodgerBlue; color:White;"> Your Headline </h3> |
|
Your Headline |
Citation | <cite> Your Text</cite> |
Computer code text |
<code>
Your Text </code>
|
Definition term | <dfn> Your Text</dfn> |
Emphasized text | <em> Your Text</em> |
Keyboard text | <kbd> Your Text</kbd> |
Sample Computer Code | <samp> Your Text</samp> |
Strong text | <strong> Your Text</strong> |
Variable | <var> Your Text<var> |