Blogging platforms make creating your blog posts pretty simple, but sometimes it's helpful to know a little HTML. I actually use it quite regularly when formatting the photos for my blog, but it has a lot of other uses as well. The first thing you need to know is that pretty much all HTML tags have an opening tag and a closing tag. You need to put these around whatever you're trying to affect. Opening tags come before what you're trying to affect and they can a lot of times be one letter or a series of commands. The closing tag comes after what you're trying to affect and usually is just one letter preceded by a backslash. All tags (opening and closing) need to be surrounded by brackets, as you can see below. <a href=""> </a> <i> </i> <p> </p> Images People can get really complicated when coding HTML, but if you know what to look for, you can usually find the same building blocks everywhere. Let's analyze the image ...