
There are many things you have to learn when joining the world of blogging.
As a one-man-band, you’ll learn to tackle social media, graphic design, photography,
and the dreaded word….coding! While coding is becoming a common
subject taught in schools, chances are,
you’ve had little to no exposure to the world of the HTML and CSS languages.
If you’re going into the bloggersphere empty-handed, fear not!
Here are 10 simple and easy-to-use HTML codes that can help take your blog’s content to
the next level.
- 1Bolded Text: <strong>Your text here</strong>
- 2Break: Your word, paragraph, or image here</br>
- 3Insert Image: <img title=”title text”
- src=”http://yourdomainnamehere.com/imagenamehere.gif” alt=”alt text” width=”100″ height=”150″ />
- 4Hyperlinked Text (add a URL):
- <a href=”http://urlgoeshere.com/”>Your text goes here here</a>
- 5Paragraph: <p>Your paragraph here</p>
- 6A Horizontal Line: <hr />
- 7Font color: <span style=”color: #ff6cc5;”>Your text here</span>
- 8Text With A Strikethrough: <del>Your text here</del>
- 9Link An Image & Open In A New Window:
- <a href=”http://yoururlhere.com/” target=”_blank”><img title=”title text” src=”http://yourimageurlhere.com/foldername/imagename.gif” alt=”alt text”
- width=”100″ height=”150″ /></a>
- 10Use A Different Font: <span style=”font-family: georgia, serif;”>Your text here</span>
