Work in progress — This wiki is an active migration / mirror of Homestar Runner Wiki and is not finished yet. Account registration and public editing are turned off until the migration is further along. For status updates, see the migration thread on the forums.

Help:Format: Difference between revisions

From HR Wiki Twice
Jump to navigationJump to search
imported>HRWikiMirrorBot
Reimported from hrwiki.org Wayback HTML→wikitext (full reconvert)
imported>HRWikiMirrorBot
Reimported from hrwiki.org Wayback HTML→wikitext (full reconvert)
 
Line 1: Line 1:
<!-- Wayback HTML body (hrwiki.org); RawHtml -->
<!-- Mirrored from Homestar Runner Wiki (hrwiki.org) via Wayback Machine -->
<html>
'''Here's how to format text:'''
<p><b>Here's how to format text:</b>
</p>
<a id="Logical_and_Physical_Tags" name="Logical_and_Physical_Tags"></a><h2> <span class="mw-headline">Logical and Physical Tags</span></h2>
<p>These HTML tags can be used to format text by typing <i>&lt;tag&gt;Text&lt;/tag&gt;</i>. The physical tags are used when you are merely concerned with appearance. When meaning is meant to be conveyed with the text decoration, use the logical tags.
</p>
<table border="5" cellpadding="2" cellspacing="2" style="font-size:20px;text-align:center;" width="100%">
<tr bgcolor="#FFFF00">
<th width="33%"> Physical Tag </th><th width="33%"> Result </th><th width="33%"> Logical Tag
</th></tr>
<tr>
<td> &lt;b&gt; </td><td> <b>bold</b> </td><td> &lt;strong&gt;<i>(strongly emphasized)</i>&lt;/strong&gt;
</td></tr>
<tr>
<td> &lt;i&gt; </td><td> <i>italic</i> </td><td> &lt;em&gt;<i>(normally emphasized)</i>&lt;/em&gt;
</td></tr>
<tr>
<td> &lt;u&gt; </td><td> <u>underline</u> </td><td> &lt;ins&gt;<i>(if inserted text is intended)</i>&lt;/ins&gt;
</td></tr>
<tr>
<td> &lt;s&gt; </td><td> <s>strike</s> </td><td> &lt;del&gt;<i>(if deleted text is intended)</i>&lt;/del&gt;
</td></tr>
<tr>
<td> <br/>&lt;big&gt;<br/><br/> </td><td> <big>big</big> </td><td> —
</td></tr>
<tr>
<td> &lt;small&gt; </td><td> <small>small</small> </td><td> —
</td></tr>
<tr>
<td> <br/>&lt;sup&gt;<br/><br/> </td><td> super<sup>script</sup> </td><td> —
</td></tr>
<tr>
<td> <br/>&lt;sub&gt;<br/><br/> </td><td> sub<sub>script</sub> </td><td> —
</td></tr>
<tr>
<td> — </td><td> <blockquote>blockquote</blockquote> </td><td> &lt;blockquote&gt;<i>(quoting a section of text)</i>&lt;/blockquote&gt;
</td></tr></table><br/>
<a id="Colors" name="Colors"></a><h2> <span class="mw-headline">Colors</span></h2>
<p>These <a href="/index.php?title=Help:Color_codes" title="Help:Color codes">color codes</a> can be used to format text by typing <i>&lt;span style="color:(color)"&gt;Text&lt;/span&gt;</i>. Either the hex code or the color name given can be used. Colors which are not listed should be specified with a hex code.
</p>
<table border="5" cellpadding="2" cellspacing="2" style="font-size:20px;text-align:center;" width="100%">
<tr bgcolor="#FFFF00">
<th width="33%"> Hexadecimal Value </th><th width="33%"> Result </th><th width="33%"> Name
</th></tr>
<tr>
<td> #FF0000 </td><td bgcolor="#FF0000">   </td><td> red
</td></tr>
<tr>
<td> #FF3300 </td><td bgcolor="#FF3300">   </td><td> orange
</td></tr>
<tr>
<td> #FFFF00 </td><td bgcolor="#FFFF00">   </td><td> yellow
</td></tr>
<tr>
<td> #00FF00 </td><td bgcolor="#00FF00">   </td><td> lime
</td></tr>
<tr>
<td> #00FFFF </td><td bgcolor="#00FFFF">   </td><td> cyan
</td></tr>
<tr>
<td> #0000FF </td><td bgcolor="#0000FF">   </td><td> blue
</td></tr>
<tr>
<td> #003333 </td><td bgcolor="#003333">   </td><td> dark cyan
</td></tr>
<tr>
<td> #FF00FF </td><td bgcolor="#FF00FF">   </td><td> fuchsia
</td></tr>
<tr>
<td> #FFFFFF </td><td bgcolor="#FFFFFF">   </td><td> white
</td></tr>
<tr>
<td> #000000 </td><td bgcolor="#000000">   </td><td> black
</td></tr></table><br/>


== Logical and Physical Tags ==


These HTML tags can be used to format text by typing ''<tag>Text</tag>''. The physical tags are used when you are merely concerned with appearance. When meaning is meant to be conveyed with the text decoration, use the logical tags.


{| class="wikitable" style="width:100%;"
<div class="visualClear"></div>
|-
</html>
! Physical Tag
! Result
! Logical Tag
|-
| <b>
| '''bold'''
| <strong>''(strongly emphasized)''</strong>
|-
| <i>
| ''italic''
| <em>''(normally emphasized)''</em>
|-
| <u>
| underline
| <ins>''(if inserted text is intended)''</ins>
|-
| <s>
| strike
| <del>''(if deleted text is intended)''</del>
|-
| <br /><big><br /><br />
| big
| —
|-
| <small>
| small
| —
|-
| <br /><sup><br /><br />
| superscript
| —
|-
| <br /><sub><br /><br />
| subscript
| —
|-
| —
| blockquote
| <blockquote>''(quoting a section of text)''</blockquote>
|}
 
== Colors ==
 
These [[Help:Color codes|color codes]] can be used to format text by typing ''<span style="color:(color)">Text</span>''. Either the hex code or the color name given can be used. Colors which are not listed should be specified with a hex code.
 
{| class="wikitable" style="width:100%;"
|-
! Hexadecimal Value
! Result
! Name
|-
| #FF0000
|
| red
|-
| #FF3300
|
| orange
|-
| #FFFF00
|
| yellow
|-
| #00FF00
|
| lime
|-
| #00FFFF
|
| cyan
|-
| #0000FF
|
| blue
|-
| #003333
|
| dark cyan
|-
| #FF00FF
|
| fuchsia
|-
| #FFFFFF
|
| white
|-
| #000000
|
| black
|}
[[Category:Help]]



Latest revision as of 04:58, 5 August 2026

Here's how to format text:

Logical and Physical Tags

These HTML tags can be used to format text by typing <tag>Text</tag>. The physical tags are used when you are merely concerned with appearance. When meaning is meant to be conveyed with the text decoration, use the logical tags.

Physical Tag Result Logical Tag
bold (strongly emphasized)
italic (normally emphasized)
underline (if inserted text is intended)
strike (if deleted text is intended)



big
small



superscript



subscript
blockquote

(quoting a section of text)

Colors

These color codes can be used to format text by typing Text. Either the hex code or the color name given can be used. Colors which are not listed should be specified with a hex code.

Hexadecimal Value Result Name
#FF0000 red
#FF3300 orange
#FFFF00 yellow
#00FF00 lime
#00FFFF cyan
#0000FF blue
#003333 dark cyan
#FF00FF fuchsia
#FFFFFF white
#000000 black