HTML In Edublogs
Today we will be looking at ways to use html in your blog. Starting with…
This little line! Using < hr > you can add a little break line
You can also add color pickers like this one
using <input type=”color”>
YOU CAN EVEN MAKE GIANT TEXT WITH style=”font-size:1000%”
| You can | Even add | Tables! |
|---|
Like this :
<table>
<tbody>
<tr>
<th>You can</th>
<th>Even add</th>
<th>Tables!</th>
</tr>
</tbody>
</table>
You can even add images as highlights like this picture of some grass!
Use this code:
<span style=”background-image: url(https://www.scotts.com/sites/g/files/oydgjc106/files/styles/scotts_asset_image_720_440/public/asset_images/photo_14598%20%281%29.jpg?itok=FmwtvQgo;”>You can even add images as highlights like this picture of some grass!</span>
You can color text!
Use the style=”color:red;” attribute
use < del > to strike through text
Edit this!
Here’s the code:
Hello</div contenteditable=”false”>
Let’s try putting in a gif with < img >

Lastly, you may have noticed this page is a little slanted. I did this using
<style>* { transform:rotate(.1deg); } </style>
Which uses CSS but it is to fun not to include.