# Text formatting URL: /introduction/guides/text-formatting Learn how to format text in your posts and chat messages. *** title: "Text formatting" description: "Learn how to format text in your posts and chat messages." icon: Type ---------- ## Best practices Generally, all text should be contained within one singular `
` tag. Example: ```html
Hi there! This is a message containing normal text
``` ## New lines To create a new line, you can use the `
Hi there! This is a message containing normal text
This is a new line!
Hi there! This is a message containing normal text This is the smallest text!
``` ### Small To create a small text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is a small text!
``` ### Large To create a large text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is a large text!
``` ### Largest To create the largest text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is the largest text!
``` ## Text styles When using text styles like **bold** or *italic*, make sure that you wrap the text in a `` tag. Example: ```html Bold text Italic text ``` ### Bold To create bold text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is bold text!
``` ### Italic To create italic text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is italic text!
``` ## Text colors OnlyFans has three possible colors for text: * Gray (`#8a96a3`) * Blue 1 (`#00aff0`) * Blue 2 (`#1b98e0`)  You can use them as follows: ### Gray To create gray text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is gray text!
``` ### Blue 1 To create blue 1 text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is blue 1 text!
``` ### Blue 2 To create blue 2 text, you can use the `` tag. Example: ```htmlHi there! This is a message containing normal text This is blue 2 text!
```