Skip to main content

Extra HTML tips

You can use both Markdown and HTML with editing Rebel Toolkit pages.

You can learn more HTML from various website or YouTube videos, but here are some simple bit of HTML code:

Bold

<b>Write your bold here</b>

This will look like:
Write your bold text here

Which is the same as using the Markdown of a double asterix (like this **)

**Write your bold text here**
Write your bold text here

Drop-down expanding text box

Using this code you can creat the drop-down content box as shown below

<details><summary><span style="color: blue;">Put your title here</span></summary> Then add your longer text here in the drop-down section. Which can use any markdown because it's inside html, but you can use other html to help lay out this. e.g. <b>BOLD</b> or a line break <br> And then continue with more content on a fresh line. </detail>

Put your title here

Then add your longer text here in the drop-down section. Which can use any markdown because it's inside html, but you can use other html to help lay out this. e.g. BOLD or a line break
And then continue with more content on a fresh line.

Note: On this page the use of a 'backtick' is used (one of these `) around parts of the page to allow you see the code.

like this