CreateMySiteNow.com
Your Success. Our Passion.

Whether you're building a website from scratch, using a html template, or an online website builder, you will need to know som basic commands related to HTML coding. We have covered some common HTML tags, but if you are interested in reading more on advanced HTML coding we recommend that you visit W3SCHOOLS.COM.
HTML Coding Basics
Before diving in we would like to give you some of the basics of HTML. The coding of HTML is based on 'tags' such as <B> for bold. When using an HTML tag you'll need to open the tag as <B>, and then after your selection close it with </B>. You notice that it's the exact same entry but we use a slash to close the HTML tag.
You can now use WYSIWYG (What You See Is What You Get) editors to start your design. The two common HTML editors are Macromedia Dreamweaver and Microsoft FrontPage. If you're familiar with Microsoft Word, you may find FrontPage quite easy. Also FrontPage is quite popular for their HTML professional templates.
New Paragraph: <p> </p> - This is used for creating a new paragraph.
![]()
Line Break: <br> - You'll see that there isn't a closing tag because it's not required. Two line breaks are the equivalnt to using a <p> tag.
![]()
HTML Bold: <b> </b> - The allows you to create bold text.
![]()
HTML Italics: <i> </i> - This tag creates italic text.
![]()
HTML Underline: <u> </u> - This tag is used for underlined text.
![]()
HTML Font Color: <font color="red"> </font> - This tag is used for changing text color.
Read more on hexadecimal colors.
![]()
HTML Font: <font face="Century Gothic"> </font - This tag allows you to change the font style.
![]()
HTML List: <li> </li> - This tag allows you to create a list such as
![]()
Centering text: <center> - There is no need to close this tag. It will center your text.
Creating Hyperlinks
<a href="http://www.createmysitenow.com">Domain originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" originalAttribute="href" originalPath=""http://www.createmysitenow.com">Domain" Name Registration</a>
The link would appear as: Domain Name Registration
<a target="_blank" href="http://www.createmysitenow.com">Domain Name Registration</a>
The link would appear as Domain Name Registration but would open a new window when clicked.
<a href="mailto:your@yourdomainname.com"> originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" originalAttribute="href" originalPath=""mailto:your@yourdomainname.com">" Contact Us</a>
The link would appear as: Contact Us
Creating Website Tables
First is the header, which is the top of your website. The left navigation is all the links are displayed. Next, is the footer at the very bottom of the page. Last, is the body, this is where all of the information is written on the website.
When you make a website you will definitely want to insert images. This makes your website more appealing. As the saying goes, "A picture says a thousand words". They can be very descriptive without having to type out a whole long description. Much like tables, images are a very important part of the process to making a website. Please visit page on inserting images into a website for detailed information.Read more on website scripts.
<body bgcolor="red">
To determine the right color code you can visit our page on hexadecimal colors.
<body background="http://createmysitenow.com/8/7/1/9/871974/images/linear.gif">
This is calling the background image from your images folder that you have uploaded to your web hosting account.
<ul>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>
The code would appear as:
<ul type="circle">
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>
The code would appear as: