LANGUAGES
Introduction
Many of you are disappointed when your wonderfully created post is mashed into one, never-ending word wall all because your post has too many characters. Well you have to worry NO MORE- because this guide will show you everything you need to know about making your long post the way you want it!
The Basics
Most of you are aware of how to use the [bq.], [* & _], or [!] tags on your post for coding, but these methods of coding get disabled after your post reaches a certain character count. So, I’ll be first teaching you about popular Kongregate code, HTML style.
Quotes
Example:
Quotes look like this.
Here is how you normally quote somebody:
bq. Users post you're quoting
In HTML:
<blockquote> Users post you're quoting</blockquote>
These methods aren’t completely necessary, since you can quote somebody by clicking “Quote Post” on the post you want to quote.
Bold and Italics
Example: Bold text looks like this.
Example: Italicized test looks like this.
Bold in Kongregate
*Important Text*
Bold in HTML
<b>Important Text</b>
Bold in HTML
<strong>Important Text</strong>
Italics on Kongregate
_Sarcasm Here_
Italics in HTML
<i>Sarcasm Here</i>
<em>Sarcasm Here</em>
<cite>Sarcasm Here</cite>
Underlined and Slashed Text
Example: Underlined text looks like this.
Example: Slashed text looks like this.
Underlined
+Text+
OR
<ins>Text</ins>
Slashed Text
-Text-
OR
<del>Text</del>
Images
Example: Image →![]()
On Kongregate
!Image URL!
In HTML
<img src='Image URL'>
In HTML (To specify dimensions)
<img src='Image URL' width='Width in Pixels' height='Height in Pixels'/>
Images (That Link to a Website)
Links an image to any url.
<A HREF="URL"> <IMG SRC="URL of Image"></a>
Links
Example: Linked Text
To link to an on-the-web location.
On Kongregate
"Link text":url
In HTML
<a href="url">Link text</a>
Advanced & Extra
These are some extra and more advanced HTML codes that, when used wisely, can really come in handy. Includes important codes for long post.
Text Size
Very Small Text
<h6>Text</h6>
Small Text
<h5>Text</h5>
Normal Text
<h4>Text</h4>
Medium Text
<h3>Text</h3>
Large Text
<h1>Text</h1>
Extra Large Text
<h2>Text</h2>
Big/Small
Big Text
<big>Text</big>
Small Text
<small>Text</small>
Text Position
Example: Upper Text Regular Text Lower Text
Upper Half
^Text^
OR
<sup>Text</sup>
Bottom Half
~Text~
OR
<sub>Text</sub>
Paragraphs/Divider
These are used to skip lines and create bodies of text.
Sample:
<p>This is your paragraph</p>
Divider Sample:
<p>This is some text.</p><hr /><p>This is some text.</p>Code Tags
Code tags are used to disable code in order to display coding.
@Phooltk@
<code>code here</.code>
(Remove the period)Similarly, =,=‘s before and after text deactivate coding.
==*Bold*== will become *Bold*
“Gray Boxes”
Example:
I’m in a box!
Puts a gray box around text, and changes text type.
<pre>In Gray Box</pre>
Feel free to add or contribute, and thanks for reading!