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.
Note: You can find the HEX number for colors here, and a list of popular font options here!
- Bolded Text: <strong>Your text here</strong>
- Break: Your word, paragraph, or image here</br>
- Insert Image: <img title=”title text” src=”http://yourdomainnamehere.com/imagenamehere.gif” alt=”alt text” width=”100″ height=”150″ />
- Hyperlinked Text (add a URL): <a href=”http://urlgoeshere.com/”>Your text goes here here</a>
- Paragraph: <p>Your paragraph here</p>
- A Horizontal Line: <hr />
- Font color: <span style=”color: #ff6cc5;”>Your text here</span>
- Text With A Strikethrough: <del>Your text here</del>
- Link 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>
- Use A Different Font: <span style=”font-family: georgia, serif;”>Your text here</span>
Leave A Comment