You may have used BB code at other sites. BB code is a very limited type of HTML (HyperText Markup Language). Desert Hunter doesn't use BB code. It runs on HTML.
At the bottom of every content creation page there's a link to a basic description of the filtered HTML input format. Here are a few more examples of filtered HTML at work. Lines and paragraphs will break automatically. Web pages and email addresses will turn into links automatically. Tags are enclosed with the "greater than" and "less than" symbols. <tag> Allowed tags include <a>, <em>, <strong>, <cite>, <code>, <ul> <ol>, <li>, <dl>, <dt>, and <dd>. Tags are used in pairs and the closing tag contains a forward slash. <tag>input</tag>
Tags are used only when inputting content. They disappear in the published page. Once they're saved the reader only sees the tag's results and the modified text, not any of the tags themselves. The only reason you see the tags on this page is because I made them visible for display in these examples.
The <a> tag is used for anchors and links.
Anchors are used in long pages to send you to another part of the page.
An anchor could be written to send you to the bottom of the page like this:
<a href="#anchor1">Bottom</a>
Once saved, only this displays: Bottom
Clicking it will send you to a reference point called "#anchor1" at the bottom of the page.
The <a>tag is also used for links to other pages, both internal and external. This an external absolute link in HTML to today's precious metal prices:
<a href="http://www.kitco.com/charts/livegold.html">Today's Gold Quotes</a>
(one of the site's automatic features kicked in and made the link inside the example active)
It looks like: Today's Gold Quote
An internal link to a page within the site can be written as absolute, like the gold link above, or relative to the page's location. This internal relative link will send you to Dan's Blog: <a href=../blog/dan-carey>Dan's Blog</a>
It looks like this: Dan's Blog
Drupal knows where it's installed. So all links are relative to both deserthunter/dhp/ and the page they're written on.
According to <cite title="HTML & XHTML: The Definitive Guide. Published by O'Reilly Media, Inc.; fifth edition (August 1, 2002)">Chuck Musciano and Bill Kennedy</cite>, the HTML cite tag actually exists!
gives the following:
According to Chuck Musciano and Bill Kennedy, the HTML cite tag actually exists!
gives the following:
function showMsg(txtMsg)
{
alert(txtMsg);
}
This tag is used on computing websites a lot, but doesn't do much on a hunting site.
gives the following:
or using the <ul> the only thing that's different is "ul" has been substituted for "ol" tags and it gives bullet points.
<ul>
<li>Henway</li>
<li>Duckway</li>
<li>Horseway</li>
</ul>
gives the following:
Using "full" HTML, one can change the style of the bullets or the way a list is ordered using small or upper case letters, and small or upper case roman numerals. The examples above were written to make them easier to see, but HTML doesn't require that either. The whole list can be placed on one line.
<ol type="i"><li>Henway</li><li>Duckway</li><li>Horseway</li></ol>
gives this result:
The last kind of list used by filtered HTML on this site is the "definition list." The whole "list" is surrounded by the <dl> tags. The "terms" to be defined are surrounded with the <dt> tags. And the "definitions" are surrounded by the <dd> tags. On just one line this time:
<dl><dt>Henway</dt><dd>About four pounds</dd><dt>Duckway</dt><dd>About six pounds</dd><dt>Horseway<dd<About a ton</dd></dl>
gives the following:
The basic user here can use those tags. HTML has many many more options, which are available to trusted bloggers and authors. More information about HTML is widely available including this basic primer and this extensive tutorial for those who would like to know more.
Here's another anchor leading you back to the top of the page. Top