( For New Users )HTML and Markdown Codes

*emphasized text*

emphasized text

**strong text**

strong text

> Blockquote

Blockquote


Heading ( HTML ) :point_left:

<h1> Heading 1 </h1>

Heading 1

<h2> Heading 2 </h2>

Heading 2

<h3> Heading 3 </h3>

Heading 3

<h4> Heading 4 </h4>

Heading 4

<h5> Heading 5 </h5>
Heading 5
<h6> Heading 6 </h6>
Heading 1

Table (Markdown code) :point_left:

|item1|item2|
|---|---|
|item3|item4|
item1 item2
item3 item4

Table using HTML :point_left:

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>
Company Contact Country
Alfreds Futterkiste Maria Anders Germany
Centro comercial Moctezuma Francisco Chang Mexico
8 Likes
[b]
bold
[/b]


bold

[i]
italic 
[/i]


italic

8 Likes

that’s the same as emphasized and strong text

Easier way to do headings is to use hastags (#) one hashtag for heading one, two for heading two, etc.

just

like

this

3 Likes

Yes bro. I researched about that later.

3 Likes

I appreciate you for thisπŸ˜‚

2 Likes

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