Home | Php | JavaScript | SQL | HTML | Server Admin | Tools
HTML
Welcome

Basic HTML Page
Webpage Icon
Tables
Other sites
Image Editor
Top 10 web hosting reviews

Basic HTML to Create a Page

Some explainations/tutorial can get pretty complicated, so to explain HTML, I will start with giving you an example of an HTML page that has some of the minimal tags.

Example Code

<html>
<head>
<title>Welcome to the Hello World page</title>
</head>
<body>
<h1>Welcome to the Hello World page</h1>
<p>On this page we are going to say "Hello"
to the world.
<hr>
<h2>Hello World!</h2>
<hr>
</body>
</html>

What are known as "tags" is the code or text that is between the less than signs "<" and the greater than sign ">". In this example the tags are: <html>, </html>, <head>, </head>, <title>, </title>, <body>, </body>, <h1>, </h1>, <h2>, </h2>, <p>, and <hr>


Link back to this page

Copy and paste this HTML code into your page to link back to this very page:
     

Or just link to the WebCodingTech site:
     

And your link will look like this:
      Inspired by stuff found at www.webcodingtech.com.

Thanks!





Copyright © 2005 WebCodingTech.com Our URL is: http://www.webcodingtech.com