In Gold Communities, HTML is allowed (depending on the Admin's preference) within posts to spice things up a bit. We’ve made a list of the most relevant HTML tags you’re likely to use on ezboard. For help on allowing HTML in your posts, click here.
Sometimes you'll want to emphasize a word or phrase within a post. Making the text bold is often a great way to do this.
<strong> this is bold text </strong>
Result: this is bold text
Italicizing is another way to emphasize a word or phrase.
<em>this is text in italics</em>
Result: this is text in italics
The ultimate way to get a message across if to play with text size. The units permitted for the code below include px, pt, em and %. Play around with different values (shown below as 24) and units (shown below as px) to create different text effects.
<span style="font-size: 24px;"> text size is 24 pixels </span>
Result: text size is 24 pixels
Text color is a popular enhancements to posts on ezboard communities. Named colors (shown below as red) or hex values (e.g., #000000 is black) may be used.
<span style="color: red;"> text color is red </span>
Result: text color is red
Paragraphs are the common, structural way to seperate ideas into sections. Paragraphs will automatically create a carriage return with some space in between.
<p> This is paragraph 1 </p>
<p> This is paragraph 2</p>
<p> This is paragraph 3 </p>
Result:
This is paragraph 1
This is paragraph 2
This is paragraph 3
Sometimes a new paragraph is not necessary in a body of text with the same idea - but a line break is needed nevertheless.
text on line 1<br>
text on line 2<br>
text on line 3
Result:
text on line 1
text on line 2
text on line 3
Linking to a website, image or post is an effective way to post.
<a href="http://www.ezboard.com/"> name of the link </a>
Result: name of the link
Linking somewhere else will take them away from a post. Adding the target="_blank" parameter will open a new window so that they never leave.
<a href="http://www.ezboard.com/" target="blank"> this link will pop-up a new window</a>
Most users have email clients which will popup when a link like below is clicked.
<a href="mailto:email@youremail.com"> email@address.com </a>
Result: email@address.com
Perhaps one of the most popular tags used within posts.
<img src="http://www.ezboard.com/image/csc_goldcommunity.gif">
Result: