Posted by Apollos HTML Guide

⚜️Becca - G2
Penta Rosette ⚜️ (#372472)

Aztec Knight
View Forum Posts


Posted on
2024-04-25 18:10:25
Apollos HTML Guide
Everything in the guide has been fully tested to ensure that each code works as it is supposed to. If there is something that you are looking for please dont hesitate to reach out and ask.

This is not an offical HTML Guide.

If any of the codes stops working please let me know so i can fix it right away!

More codes in Comments

If theres anything you would like added
Please let me know!

Important
Remember to remove asterics (*) from the code.
It will not work if you don't!!


The Basics
This is the easiest form of HTML to learn,
if you are a newbie it is best to start here


Bold Font
<*b>Text<*/b>

Italic:
<*i>TEXT<*/i>

Underline:
<*u>TEXT<*/u>

Striking:
<*s>TEXT<*/s>

Combining Them
When combining sets of codes, it doesn't matter what order you put them in, as long as you have the beginning and the end of the code between the only words you want changed.

Example Text
<*b><*u><*i><*s>Example Text<*/s><*/i><*/u><*/b>


Text Alignment
This can be used to center your entire post or just certain parts
<*p style="text-align:center;"*>TEXT<*/*p>

To align entire page leave out <*/*p>

Font Size
You can change the size of the font from 1-7

<*font size="1">TEXT<*/font*>

Examples
This is Font Size 1
This is Font Size 2
This is Font Size 3
This is Font Size 4
This is Font Size 5
This is Font Size 6
This is Font Size 7

Color & Highlight
You will need a hexcode for this
This code will color the text only
<*font color=#HEXCODE*>TEXT<*/font>

This code highlights the text
<*span style="background-color:#HEXCODE" >TEXT<*/span>

Combining Them
Example Text

<*span style="background-color:#FFFF00" ><*font color=#FF0000*><*font size="3">Example Text Code Used<*/span><*/font>

You probably noticed that both the size and color modifiers end in <*/font>, but the same rule of openers and closers apply here. If you change both the size and color of a certain stretch of text, you must end with two <*/font>s, otherwise your size or color (whichever you placed second in the line) will continue to change the rest of your post, and ruin the rest of your HTML.


Hexcodes
Hexcodes change the color of backgrounds, fonts, boxes & more.
It tells the code which color you want it to be.

Blue: 0000FF - Orange: FFA500 - Purple: 800080 - Red: FF0000 - Yellow: FFFF00 - Green: 008000 - Snowblind Blue: 6c9cc1 - Aqua: 00FFFF - Dark Blue: 00008B - Lime: 00FF00 - Magenta: FF00FF - Brown: A52A2A - Maroon: 800000


More Color Hexcodes Here (Link)

Click-Able Links
Links
<*a href="WEBSITE HERE">Text<*/*a>

Images
<*a href="WEBSITE LINK"*><*img src="IMAGE URL"*><*/*a>

Lists & Bullets

Bullet Points: <*ul><*li>text<*/li><*li>text<*/li><*li>text<*/li><*/ul>
For each bullet point you want, you use another set of list tags
(<*li> & <*/li>)

Numbered: <*ol><*li>text<*/li><*li>text<*/li><*li>text<*/li><*/ol>
For each number you want, use another set of list tags
(<*li> & <*/li>)

Mobile View

This is so mobile users can see your CSS & HTML on all devices

<*link rel="stylesheet" type="text/css" href="https://dl.dropbox.com/s/cjqt9wfvhsf13rp/MobileLioden.css?dl=0" /*>

Toggles

You can center toggles & the text within them as well as images and bold HMTL
Keep in mind that toggle spoilers do not always work with certain HMTL & CSS
[*spoiler]TEXT [/*spoiler]










Images
There are a few different codes for posting images:
☆ You will need to upload the image to Imgur
(or something similar) to get the PNG Link.

1st Code:
<*img src="IMAGE LINK"*>
- This one will automatically post image to full screen.
- Don't use this code for comments as it is to big.

2nd Code:
<*img src="link here" width=#*>
- This one will make the image smaller or bigger
- This will make all sides even.
- This code is best for comments
- Picture below is at width 200
Example:

3rd Code:
<*img src="URL HERE" height=# width=#*>
- This code let's you choose size of height & width separately.
- Picture below shown at height=200 width=100
Example:




Hrt Icon 0 players like this post! Like?

Edited on 25/04/24 @ 20:06:13 by ⚜️Becca - G2 Penta Rosette ⚜️ (#372472)

⚜️Becca - G2
Penta Rosette ⚜️ (#372472)

Aztec Knight
View Forum Posts


Posted on
2024-04-25 18:12:39

Tables

<*div style="width:100px;height:100px;overflow:auto;border:2px solid; background:#HEXCODE;"*>TEXT<*/div>
What the code does


<*table style="width:400px;border:2px solid;"*><*tr*><*th*>Header Text<*/*th><*/*tr><*tr*><*td*>Content Text<*/*td><*/*tr><*/*table>
Header Text
Content Text

You can change the size by changing the width and height px. The overflow:auto means that if you write larger than the table that the scroll bar will automatically show up. The border:1px is the standard border size. You can make the border thicker by increasing that. The background color can also be changed with the hex codes. If you want a transparent background, just take that out.

Scroll Boxes

<*div style="border:2px solid black;width:150px;height:100px;overflow-y:hidden;overflow-x:scroll;"*><*/div>
What the code does
Horizontal

The one above creates a scrolling horizontal table. If you want a vertical one, simply change the overflow-y: to scroll instead of hidden and change the overflow-x to hidden instead of scroll.

Columned

<*table border="NUMBER HERE" cellpadding="NUMBER HERE" cellspacing="NUMBER HERE" width="NUMBER HERE"><*tr>
<*td>Column 1<*/td>
<*td>Column 2<*/td>
<*td>Column 3<*/td>
<*/tr><*/table>

Floating Boxes/Tables

<*div style="position:fixed;left:0px;bottom:0px;width:165px;height:200px;border:5px solid;overflow:auto;">TEXT<*/div>
What the code does

Like the others you can resize this. These can only be used in dens. You can fix it anywhere in your den.



Hrt Icon 0 players like this post! Like?


Edited on 25/04/24 @ 18:18:25 by ⚜️Becca - G2 Penta Rosette ⚜️ (#372472)

⚜️Becca - G2
Penta Rosette ⚜️ (#372472)

Aztec Knight
View Forum Posts


Posted on
2024-04-25 18:18:50

DIV Boxes

Scrolling Div Box with Background color
<*div style="width:300px;height:200px;background:#FFFF00;border:2px solid;"* class="scrollBox"*>Text<*/*div>
Example of what each of the codes do


Regular Div Box
<*div style="width:300px;height:200px;"* class="scrollBox"*>Text<*/*div>

Side by Side Div Boxes
<*div style="width:800px;"*>
<*div style="width:#px;height:#px;float:left;background:#HEXCODE;border:#px solid;"* class="scrollBox"*>Text1<*/*div><*div style="width:#px;height:#px;float:right;background:#HEXCODE;border:#px solid;"* class="scrollBox"*>Text2<*/*div>
<*/*div>

It is vital that you do not add any spaces inbetween the two div boxes you type inside of or else they'll not be lined up correctly.



Hrt Icon 0 players like this post! Like?

⚜️Becca - G2
Penta Rosette ⚜️ (#372472)

Aztec Knight
View Forum Posts


Posted on
2024-04-25 18:19:21

Image Overlay


You will need a image resizer to use this.
Photos from imgur are to large.
Yes, you can use Click-Able Links in the code
You may need to change the size of the box to fit your image better.

CURRENTLY DOES NOT WORK ON APPLE DEVICES.
I am working on trying to change that.


The code for: Lion Facing Left (1st Image) - 50% smaller
<*table style="width: 100%; height: 400px; border: 1px solid #000; background: url(URL here) width=400 center left no-repeat; padding: 10px; padding: none; font-size: 12px; border-radius: 5px;"> Text goes here.<*/*td><*/*tr><*/*table>

The code for: Lion Facing Right (2nd Image) - 50% Smaller
<*table style="width: 100%; height: 400px; border: 1px solid #000; background: url('URL here') center right no-repeat; padding: 10px; padding: none; font-size: 12px; border-radius: 5px;">Text goes here.<*/*td><*td><*/*td><*/*tr><*/*table>

What the code does: Lion Facing Left
Text goes here.


What the code does: Lion Facing Right
My kings link
Slot 1: Brimstone Undersides
Slot 2: Sunset Siamese
Slot 3: Stratosphere Vitiligo
Slot 4: Red Lace
Slot 5: Noctis Soft Rosette
Slot 6: Mottled Rosette
Slot 7: Neutron Flare
Slot 8: Brimstone Agouti
Slot 9: Lycaon Scarce Noctis
Slot 10: Noctis Heavy Rosette


Credit goes to: Punny Side Up
- Original poster stated that no credit is needed
- HOWEVER, If asked where to get this code please send them here or to Punny Side Up forum.

Additional Code:
<*table style="width: 450px;height: 350px;; border: 3px double aqua; background: url('https://i.imgur.com/N1g3c7K.jpg?4') center no-repeat;padding: 5px;padding: none;font color: aqua;font-size: 15px;border-radius: 5px;"*><*tr><*td valign="center" style="background: rgba(255, 255, 255,0.6);float:left;width: 50%;height: 100%;padding: 5px;font color: aqua;text-align: right;"*>




Hrt Icon 0 players like this post! Like?


Edited on 25/04/24 @ 18:24:05 by ⚜️Becca - G2 Penta Rosette ⚜️ (#372472)







Memory Used: 635.95 KB - Queries: 0 - Query Time: 0.00000 - Total Time: 0.00357s