HTML Tags / Codes / Web Page Design
| If you're doing business on the Internet,
taking the time to learn how to design your own web site and write your own
HTML code (hypertext markup language) will play a major role in your success.
Not only will learning HTML coding provide you with the freedom to update
your own HTML documents, but it will also save you a great deal of money,
as you will be able to avoid hiring a professional web designer. If you're looking for some HTML tags to spice up your web site, you've come to the right place. You will find a variety of HTML codes and tips to assist you below. However, before reviewing the HTML tags, if you're new to HTML and web site design, the following section will assist you in creating an HTML web page. For additional web site design information, make sure you don't miss the web design articles and tutorials at the bottom of this page.
|
| <html> <head> <title>Your Page Title</title> </head> <body> This area will contain everything that will be visible through a web browser, such as text and graphics. All of the information will be HTML coded. For a complete list of HTML codes, tags and examples, see the HTML chart below. </body> </html> |
<html> - Begins your HTML
document.
<head> - Contains information about the page such as the TITLE,
META tags for proper Search Engine indexing, STYLE tags, which determine
the page layout, and JavaScript coding for special effects.
<title> - The TITLE of your page. This will
be visible in the title bar of the viewers’ browser.
</title> - Closes the HTML <title> tag.
</head> - Closes the HTML <head> tag.
<body> - This is where you will begin writing your document
and placing your HTML codes.
</body> - Closes the HTML <body> tag.
</html> - Closes the <html> tag.
How to Copy and Paste HTML Tags / Codes
To copy and paste the HTML tags / codes from the HTML
chart below into the HTML of your web page, place your mouse pointer over
the beginning of the HTML code you would like to copy. Next, click
and hold your left mouse button and drag your mouse over all the HTML code
you would like to copy
(Example of highlighted
text). Your HTML code should now be highlighted. Go to "Edit"
- "Copy" on your web browser's toolbar and then place your cursor within
your HTML code where you would like to place the code. Right click on your
mouse and go to "Paste." Your HTML code should now be displaying within your
HTML document.

