<abbr> </abbr>
<strong> </strong>
<em> </em>
<b> </b>
<i> </i>
<cite> </cite>
<small> </small>
<del> </del>
<ins> </ins>
<dfn> </dfn>
<kbd> </kbd>
<samp> </samp>
“inline quotation”
<q> </q>
<sup> </sup>
<sub> </sub>
<var> </var>
Add desired class to the <a> tag (<a href="" class=""> Button Text </a>)
<a class="btn"> </a>
class="btn success"
class="btn warning"
class="btn danger"
class="btn inf"
<ul class="pages"> <li><a href="" class="btn prev"><span></span></a></li> <li class="current"><a href="" class="btn page">1</a></li> ... <li><a href="" class="btn next"><span></span></a></li> </ul>
Breadcrumbs Style 1
<ul id="breadcrumbs-one"> <li><a href=""> 1 </a></li> <li><a href=""> 2 </a></li> ... <li><a href="" class="current"> You are here </a></li> </ul>
Breadcrumbs Style 2
<ul id="breadcrumbs-two"> <li><a href=""> 1 </a></li> <li><a href=""> 2 </a></li> ... <li><a href="" class="current"> You are here </a></li> </ul>
Breadcrumbs Style 3
<ul id="breadcrumbs-four"> <li><a href=""> 1 </a></li> <li><a href=""> 2 </a></li> ... <li><a href="" class="current"> You are here </a></li> </ul>
Ordered List
<ol> <li> <a href=""> ... </a> </li> <li> ... </li> ... </ol>
Ordered List 2
<ol class="list3"> <li> <a href=""> ... </a> </li> <li> ... </li> ... </ol>
Unordered List 1
<ul class="list1"> <li> <a href=""> ... </a> </li> <li> ... </li> ... </ul>
Unordered List 2
<ul class="list2"> <li> <a href=""> ... </a> </li> <li> ... </li> ... </ul>
Mixed List
<ol> <li> <a href=""> ... </a> </li> <li> <ul class="list1"> <li> ... </li> </ul> </li> ... </ol>
Definition List
<dl> <dt> <a href=""> ... </a> </dt> <dd> ... </dd> <dt> <a href=""> ... </a> </dt> <dd> ... </dd> ... </dl>
Header1 | Header2 | Header3 | Header4 | Header5 | Header6 |
---|---|---|---|---|---|
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
<table class="table"> <thead> <tr> <th> ... </th> ... </tr> </thead> <tbody> <tr> <td> ...</td> ... </tr> </tbody> </table>
Header1 | Header2 | Header3 | Header4 | Header5 | Header6 |
---|---|---|---|---|---|
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
<table class="table table-striped"> <thead> <tr> <th> ... </th> ... </tr> </thead> <tbody> <tr> <td> ...</td> ... </tr> </tbody> </table>
Header1 | Header2 | Header3 | Header4 | Header5 | Header6 |
---|---|---|---|---|---|
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
<table class="table table-bordered"> <thead> <tr> <th> ... </th> ... </tr> </thead> <tbody> <tr> <td> ...</td> ... </tr> </tbody> </table>
Header1 | Header2 | Header3 | Header4 | Header5 | Header6 |
---|---|---|---|---|---|
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
Division 1 | Division 2 | Division 3 | Division 4 | Division 5 | Division 6 |
<table class="table table-bordered table-striped2"> <thead> <tr> <th> ... </th> ... </tr> </thead> <tbody> <tr> <td> ...</td> ... </tr> </tbody> </table>
Simple Form
To add new text field to the form duplicate the following code:
<label><span class="text-form">First Name:</span><input type="text"></label>
To create select box use the following code:
<label> <span class="text-form">Country:</span> <select> <option>United States</option> <option>United States</option> </select> </label>
To add new options to the select box use the tag "option": <option>Your Text</option>
To create multiple radio buttons use:
<div class="wrapper"><input type="radio" name="group1"><div class="text-form2 fleft">Yout Text</div></div>
Please note that all "input" tags with attribute type="radio" should have same name name="NameOfRadioGroup"
Checkbox can be created using the following code:
<div class="wrapper"><input type="checkbox"><div class="text-form3 fleft">Sign me up for your newsletter</div></div>
Any input tag can be displayed as checkbox. To do this type "checkbox" for the input tag type attribute (<input type="checkbox">)
This is an example of plain form, without any styles. Such elements as "select", "radio", "checkbox" will change appearance depending on your operating system.
<form id="form1"> <label><span class="text-form">First Name:</span><input type="text"></label> ... <label> <span class="text-form fleft">Country:</span> <select> <option>United States</option> <option>United States</option> </select> </label> <label> <div class="text-form">Message:</div> <textarea></textarea> </label> <div class="wrapper"><input type="radio" name="group1"><div class="text-form2 fleft">Male</div></div> <div class="wrapper"><input type="radio" name="group1"><div class="text-form2 fleft">Female</div></div> <div class="wrapper"><input type="checkbox"><div class="text-form3 fleft">Sign me up for your newsletter</div></div> <a class="btn">Send</a> </form>
Advanced Form
This form is styled using the jqTransform plugin. All form elements will be displayed identically in all browsers and operating systems. Adding new elements can be done the same way as for the simple form but note that form ID should be "form2"
<form id="form2"> <label><span class="text-form">First Name:</span><input type="text"></label> ... <label> <span class="text-form fleft">Country:</span> <select> <option>United States</option> <option>United States</option> </select> </label> <label> <div class="text-form">Message:</div> <textarea></textarea> </label> <div class="wrapper"><input type="radio" name="group1"><div class="text-form2 fleft">Male</div></div> <div class="wrapper"><input type="radio" name="group1"><div class="text-form2 fleft">Female</div></div> <div class="wrapper"><input type="checkbox"><div class="text-form3 fleft">Sign me up for your newsletter</div></div> <a class="btn">Send</a> </form>
Contacts Form
You can learn more about working with Contact Form in the Contact Form manual after the template purchase. Manual is located in the "documentation" folder of the template package.
Search Form
<form id="search"> <input type="text"> <a class="btn">Search</a> </form>
Subscribe Form
<form id="subscribe"> <input type="text"> <a class="btn">Subscribe</a> </form>
Log In Form
<form id="log_in"> <input type="text"> <input type="password"> <a class="btn">Log In</a> </form>
Donec eget tellus non erat
Ut tellus dolor, dapibus eget, elemenm. Quis que nulla. Vestibulum libero nisl, porta velce lerisque eget, males uada at, neque. Vivmus eget nibh. Etiam cursue vel metus.
Jessica Priston
<blockquote> <!-- insert text here --> </blockquote>
“Lorem ipsum dolor amet consectetu adipiscing elit. Praesent vestibulum molestie lacus. Aenean nonummy hendrerit mauris...”
<div class="quotes_2"> <blockquote> <!-- insert text here --> </blockquote> <span></span> </div> <div class="quotes-links"> <a href="">Link Text</a> </div>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi feugiat pharetra turpis, sed posuere nisi porta a. Ut tellus dolor, dapibus eget, elemenm. Quis que nulla. Vestibulum libero nisl, porta velce lerisque eget, males uada at, neque. Vivmus eget nibh. Etiam cursue vel metus.
Jessica Priston
<blockquote class="quotes_3"> <!-- insert text here --> <img src="images/quote-br.gif" alt=""><br> <a href="">Link Text</a> </blockquote>
<span class="info"> insert text here </span>
<span class="info info_success"> insert text here </span>
<span class="info info_warning"> insert text here </span>
<span class="info info_important"> insert text here </span>
<span class="info info_info"> insert text here </span>
<address> insert text here </address>