HTML PAGE DESIGN LINKS Homepage html page design Basic html forms Text and font tags html tables Image tags Javascript Web hosting Free tracking Free traffic |
The easy way to making a Website using HTML codeLearning basic HTML code is not that hardHTML stands for HyperText Markup Language the fundamental programming language of the web. This page explains basic code for html tags for building HyperText Markup websites Without getting to technical ! For the beginner and first time webmasters. Some Html code basic rules : Lower case is recommended as more advanced page design is now all lower case.
Visit www.w3c.org The World Wide Web Consortium |
A Very Basic HTML web page tag layout with tag explanations | |
Html code can be written offline with a simple text editor like windows notepad. You need only to save it as a .htm or .html file to have a web page that can be viewed offline or uploaded to a web host to be live on the internet. Their are many free web hosts for beginners who want a web site. Text in blue is not part of your html code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> This html tag declares to browsers that your page is html 4.0 in English <html> The html tag marks the beginning of your html page code <head> Head tags contain the title tags for your page Also can contain meta tags and java script that are not required for a basic web page <title> This is the name of my web site </title> Between the title tags you type in regular text to name your page what ever you want </head> The end head tag <body> The body tag starts the area of the page code where you will put your content Your text and images go between the body tags. <h2> This is a heading tag </h2> Heading tags are used like headlines in your local newspaper. Text between heading tags will always be bold. You can change the size of your heading with the number in the tag The numbers 1-6 are used 1 being the largest <h1><h2><h3> and so on up to 6. <p> The paragraph tag separates blocks of text into paragraphs. </p> </body> </html> The end of your html code |
|
Make a page of your own ! Copy and paste this code into notepad to make a page of your own. | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> Make this text the name of your web site </title> </head> <body> <h2>News Flash HTML Beginner making Web site </h2> <p> I want the world too know ! </p> <p> If I add enough paragraphs to this I will have a novel ! </p> </body> </html> |
|
When saved as a .html file with notepad The above html page code will look like this | |
News Flash HTML Beginner making Web siteI want the world too know ! If I add enough paragraphs to this I will have a novel ! Home page Back to top of page Copyright © 2004 2011 FunwithyourPC Contact Us |