HTML Tutorial:
By Online Security Authority on Jul 4, 2009 in Website Security
If you can type your name on a computer and you know the difference between Save and SaveAs, then by the end of this article you will be able to create a webpage.
To most nerds of computer programming, html is not even a programming language. They are right about one thing, its easy and with very little practice you can be developing your own webpage. So forget about the science and lets get straight to it.
The whole webpage file is created between 2 tags <html> </html> these tell your browser how to deal with what is between them. If you were to type plain text between these tags they would show in your browser as full lines of text, without format. You would need to use different tags to get the required effect you need.
For example a <br> tag is used to create a break to the next line in your browser. <font> is used to change the size, color and style of text.
Open notepad, wordpad or some word editor on your computer. Type in exactly what you see below in blue, or copy and paste it. Now Save As first.html onto your desktop. You can then chop and change the code to suit yourself. You must use the extension .html this determines that it is a html file.
<html>
<h1>HELLO WORLD</h1>
<h1> Between the h1 tags shows this size heading. </h1>
Change the heading to suit yourself and Under this heading type your own content.
<h2> Between the h2 tags shows this size heading.</h2>
Change the heading to suit yourself and Under this heading type your own content.
<h3>Between the h3 tags shows this size heading.</h3>
Change the heading to suit yourself and Under this heading type your own content.
<br><br>
<font color=”red”>use the font tag to give a color to text</font><br>
<font color=”blue”>use the font tag to give a color to text</font><br>
<font color=”orange”>use the font tag to give a color to text</font><br>
</html>
When you have this in a file and saved to your desktop, you can open it by double clicking the internet icon called first.html that should be on your desktop. You will not appreciate the simplicity of the code in blue until you see the actual html page opened in your browser.
By comparing the open webpage first.html and the html code to create it, you will notice how easy it is to make changes to it. Below is how it should look in your browser.
HELLO WORLD Between the h1 tags shows this size heading.
Change the heading to suit yourself and Under this heading type your own content.
Between the h2 tags shows this size heading.
Change the heading to suit yourself and Under this heading type your own content.
Between the h3 tags shows this size heading.
Change the heading to suit yourself and Under this heading type your own content.
use the font tag to give a color to text
use the font tag to give a color to text
use the font tag to give a color to text
The reason you dont need <br> tags between the headings is that the <h1> <h2> <h3> tags create their own breaks. Remember you can use the SaveAs option to save different variations of this file, so feel free to experiment.
More Beginners HTML
Article Source:http://www.articlesbase.com/e-learning-articles/html-tutorial-1004213.html
Written by: OSAblogger / Bill Wardell - Please Read Our Latest OSA eZine Edition
Popularity: 1% [?]
OSA Related Posts- Web designers and SEO.
- Your Banks Security is Only As Secure As Your Banking Habits
- Facing the Information Security Hole in 2009
- What is the Secret? and how can it help your Children...
- Review Me
- Top Internet Security Website Finds Suitable Partner To Fight Online Crime.
- RFID WHERE? You'd better look at your shoes, socks and underwear!
- Worms, viruses, spyware, and other hacker tools, have become Organized Crime choice of handguns.
- Get Ready for Better SSL Certificates
- Keeping Your Money Safe On the Internet: 10 Methods You Can Ensure Online Banking Security
- Importance Of Meta Tags
- 10 Benefits of Hosting your Own Blog
- Develop Your Own Web Traffic
- Search Engine Visibility - Fundamental Site Optimization
- Search Engine Optimization: Four Vital Steps For Optimizing Your Website
- Is Design Integration Important for a Corporate Blog?
- Review Lancome Lip colors
- Three Reasons You Should Not Make Your Own Money Making Website
- Internet Traffic And SEO Techniques
- Blog Copyright








