Here's how to customize your one sacred HTML page.
You can insert an image using the <img>
tag:
<img src="https://example.com/myimage.jpg" width="300" />
Change fonts with inline styles:
<span style="font-family: 'Lucida Console', monospace;">Lucida Console vibes</span>
Or change the color:
<span style="color: red;">This text is red</span>
Want a colorful box?
<div style="background-color: #222; border: 2px dashed #FF00FF; padding: 1rem;"> <strong>Colorful Box</strong><br> You can put anything you want in here. </div>
You can even embed audio files:
<audio controls> <source src="https://ia801800.us.archive.org/30/items/18-come-to-me/01%20-%20The%20Pink%20Panther%20Theme.mp3" type="audio/mpeg"> Your browser does not support the audio tag. </audio>
We now support YouTube embeds. Just get the embed code off YouTube and copy paste.
<br>
to make space.