HTML Help
Here is where I dump HTML code. I play “cut and paste” to appear to know what I’m doing on the internet. Secrets out.
<a href=”URL” title=”additional information”>link text</a>
Links and anchors-additional info is what is seen when hovering over it.
<b>…</b>
- Use boldface type. Equivalent CSS:
{font-weight: bold}
<i>…</i>
- Use italic type. Equivalent CSS:
{font-style: italic}
<big>…</big>
- Creates bigger text. Equivalent CSS:
{font-size: larger}.
<small>…</small>
- Creates smaller text. Equivalent CSS:
{font-size: smaller}
<s>…</s>(deprecated)
<strike>…</strike>(deprecated)
- Create strike-through text: Strikethrough Equivalent CSS:
{text-decoration: line-through}
<tt>…</tt>
- Use a typewriter-like, also known as teletype, (fixed-width) font. Equivalent CSS:
{font-family: monospace}
<u>…</u>(deprecated)
- Use an underlined font. Equivalent CSS:
{text-decoration: underline}
Thank you Wikipedia