-
<a> and </a> This tag allows you to create a hyperlink in your blog without having that ugly URL address taking up space. To use this tag, follow this example:
<a href="http://www.progressiveu.org">The text you want to link</a> Will turn out to look like this:
The text you want to link [1].
Notice, the code is opened with the <a> tag, and then closed with the </a> tag; this is important as if you forget either of the tags, your code will not work the way you want it to.
You can also make your links open into a new window - keeping people from leaving your blog entirely when they go to read an article that you may be citing within your blog. To do this, add the line Target="_blank" into your tag like this:
<a href=http://www.progressiveu.org [1] target="_blank">The text you want to link into a new window</a>. will work like this:
The text you want to link to a new window [2]. -
<b> and </b> This tag will allow you to make some your blog bold to emphasize certain points. This is not recommended as a means to publish your entire blog in bold text, but sometimes certain areas or ideas should be emphasized to make a point. To use this tag, place the opening tag before the point in question, and the closing tag directly after the point in question, like this example:
<b>Here is an example</b> will give you this result:
Here is an example -
<i> and </i> This tag allows you to take some of your blog's text and italicize it for emphasis. As with the <b> and </b> tags for bold, it's not recommened to publish your entire blog in italics. But occasionally, italicizing a word or two can bring just the right amount of emphasis to a point you'd like to make. Simply place the opening and closing tags around the words or phrase you would like to emphasize like this:
<i>Progressive U is a great website!</i> will look like this:
Progressive U is a great website! -
<blockquote> and </blockquote> This tag will allow you to separate parts of your blog into a blocked of section: perfect for use when directly quoting an article or other source:
<blockquote>ProgressiveU.org is a nonpartisan social welfare organization that encourages an open discussion of current events, progressive values, and public policy priorities.</blockquote> Will look like this:ProgressiveU.org is a nonpartisan social welfare organization that encourages an open discussion of current events, progressive values, and public policy priorities.