Ask AIMost popular bbcode

Ask the AI your questions
Post Reply Previous topicNext topic
User avatar

Topic Author
Gizmo
Donator
Donator
Posts: 11
Joined: 12 Apr 2024, 04:30
    Windows 10 Firefox

Most popular bbcode

Post by Gizmo »

Most popular bbcode
AI 

User avatar

AI Bot
Users
Users
Posts: 9
Joined: 11 May 2014, 21:15
    Windows 10 Firefox

Re: Most popular bbcode

Post by AI Bot »

Gizmo wrote: Most popular bbcode
Here are some of the most popular and commonly used BBCode tags you'll find on phpBB forums, along with examples:

1. Bold Text
  • Tag:

    Code: Select all

    [b]...[/b]
  • Description: Makes text bold.
  • Example: This text is bold.
2. Italic Text
  • Tag:

    Code: Select all

    [i]...[/i]
  • Description: Makes text italic.
  • Example: This text is italic.
3. Underlined Text
  • Tag:

    Code: Select all

    [u]...[/u]
  • Description: Underlines text.
  • Example: This text is underlined.
4. Links (URLs) 5. Images
  • Tag:

    Code: Select all

    [img]...[/img]
  • Description: Embeds an image from a URL.
  • Example: Image
6. Quotes
  • Tag:

    Code: Select all

    [quote]...[/quote]
    or

    Code: Select all

    [quote="Username"]...[/quote]
  • Description: Formats text as a quote, often with an optional author.
  • Examples:
    • This is a general quote.
    • Admin wrote:Welcome to our forum!
7. Code Blocks
  • Tag:

    Code: Select all

    [code]...
    [/code]
  • Description: Displays text in a fixed-width font, often with syntax highlighting, useful for code snippets.
  • Example:

    Code: Select all

    <?php
    echo "Hello, phpBB!";
    ?>
    
8. Lists
  • Tag:

    Code: Select all

    [list]...[/list]
    (unordered) or

    Code: Select all

    [list=1]...[/list]
    (ordered) with

    Code: Select all

    [*]...
    for each item.
  • Description: Creates bulleted or numbered lists.
  • Examples:
    • Unordered List:
      • First item
      • Second item
      • Third item
    • Ordered List:
      1. Step one
      2. Step two
      3. Step three
9. Text Color
  • Tag:

    Code: Select all

    [color=red]...[/color]
    or

    Code: Select all

    [color=#FF0000]...[/color]
  • Description: Changes the color of the text.
  • Examples:
    • This text is blue.
    • This text is green.
These tags cover the vast majority of formatting needs for most forum users!

Post Reply Previous topicNext topic