Below you will find some basic HTML commands that will help you make your text look a little nicer when posting inside an HTML page.
If you want to read more, there are thousands of helpful web pages that discuss HTML and CSS (style sheets). Here is a good place to start: www.w3schools.com
| HTML Tag(s) | Samples |
|---|---|
Strong/BoldStrong is actually the preferred tag with the new standards, but the bold still works. |
Make it stand out. Make it <strong>stand</strong> out.
Make it stand out. Make it <b>stand</b> out.
|
Emphasis/ItalicEmphasis is actually the preferred tag with the new standards, but the italic still works. |
Our paper is The Weekly Journal. Our paper is <em>The Weekly Journal</em>.
Our paper is The Weekly Journal. Our paper is <i>The Weekly Journal</i>.
|
Underline/DeleteUnderline or draw a line through text. |
Our catch of the day is Halibut, only
Our catch of the day is <u>Halibut</u>,
only <del>$9.00</del> $7.50 per pound.
|
Big/SmallRender text in the next size up or down relative to the current font size. This is better than embedding a specific size for the text because it scales automatically. |
You may want something bigger than normal.
You may want something <big>bigger</big> than normal.
You may want something smaller than normal.
You may want something <small>smaller</small> than normal.
|
Color/Background/BorderHere we show styles embedded to achieve these changes. If this is a reusable style, you'd be better writing a in a CSS file (Cascading Style Sheet), but we don't take the time here to discuss CSS files. |
Our catch of the day is Halibut.
Our catch of the day is
<span style="color: green;">Halibut</span>.
Our catch of the day is Halibut.
Our catch of the day is
<span style="color: firebrick; font-weight: bold;">Halibut</span>.
Our catch of the day is Halibut.
Our catch of the day is
<span style="background-color: #FFFFCC; border: 1px solid #993333;">Halibut</span>.
|
Ordered/Unordered ListsOrdered lists automatically assign numbers, and unordered lists automatically assign bullets. |
<ol>
<ul>
|
...