Markup in posts


#1

Here are some cool things you can do in HTML Markup in your posts:
Text enclosed in<h1>(Text)</h1> will be huge!

(Text)

As you move up, it gets smaller:

<h2>:

(Text)

<h3>:

(Text)




Type <ᵇʳ> to drop down a line:

Type


<br> to drop down a line (I did 3).

To maker a table, use the <table> functions:

User Name Country
CommandeR Lindsay Rooms UK
Crackel Michel Canada

The code the made the above table is:

<table>
  <tr>
    <th>User</th>
    <th>Name</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>CommandeR</td>
    <td>Lindsay Rooms</td>
    <td>UK</td>
  </tr>
  <tr>
    <td>Crackel</td>
    <td>Michel</td>
    <td>Canada</td>
  </tr>
</table>

That’s all I’ll share for now. Have fun!

Was this interesting?

  • Yes
  • Not Very
  • No

0 voters

Thanks for your time,
Best_codes


#2

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.