markdown color text code example

Example 1: give red color text in markdown

<span style="color: red;">text</span>

Example 2: markdown: text size

<font size="1"> This is my text number1</font> 

 <font size="2"> This is my text number 2 </font>
 
 <font size="3"> This is my text number 3</font> 
 
 <font size="4"> This is my text number 4</font> 
 
 <font size="5"> This is my text number 5</font> 
 
 <font size="6"> This is my text number 6</font>

Example 3: markdown color

// Via HTML:
<span style="color:red">some *red* text</span>.

Example 4: font size markdown

<font size=1> This is my text number1</font> 

 <font size="2"> This is my text number 2 </font>

Example 5: markdown codebox text color

```json
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

Tags:

Html Example