What You See Is What You Get - Edit visually or directly in code.
Tag | Description |
---|---|
<h1> to <h6> | Headline tags. <h1> is the most important. |
<p> | Defines a paragraph. |
<a href="..."> | Defines a hyperlink. |
<img src="..." alt="..."> | Embeds an image. `src` is the path, `alt` is the description. |
<b> or <strong> | Bold text. <strong> indicates strong importance. |
<i> or <em> | Italic text. <em> indicates emphasis. |
<ul> and <li> | Defines an unordered (bulleted) list and its items. |
<ol> and <li> | Defines an ordered (numbered) list and its items. |
<br> | Inserts a single line break. |