Sunday, December 5, 2010

Making an HTML Page







 

If you have a business and want to promote your products or services trough website, this information is right for you.  Why hire a professional designer instead creating your own. Things you need is HTML EDITOR such as Note Pad or DreamWeaver in this you can now edit your code.

A web page is created using a language called, Hypertext Markup Language, better known as HTML Code. You can write your own coding within a plain text editor, such as Note Pad, or use an HTML editor, which will write the code for you.

HTML codes, also referred to as HTML tags, are enclosed by the lesser than (<) and greater than (>) brackets and may be written in capital or lower case letters.

The opening bracket is followed by an element, which is a browser command, and ends with the closing bracket.

<font size=2>

An element may also be followed by attributes, which are words describing the properties of the element, and further instruct the browser.

<font size=2>

Attributes are only contained in the opening HTML tags to the right of the element and are separated by a space and followed by an equal (=) sign.

The value follows the equal sign and is enclosed in quotes.

<font size=2>

Basic HTML Document Code Structure
Begin writing your HTML tags by creating your document's basic layout. Copy and paste this code into your text or HTML editor.



<html>
<head>
<title>Your Page Title</title>
</head>
<body>

This area will contain everything that will be visible through a web browser, with th use of Mozilla, Internet Explorer, Google Chrome, Safari and Opera 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>

Note Save your file with dot html format like this yourfilename.html.

www.web-source.net

Thursday, December 2, 2010

Learned How to Make A Website

Making a website isn't difficult!!!!

What You Will Need To Start

 

There are only two things that you really need:-
1.         A Domain Name
2.         A Web Host

A DOMAIN NAME is a name that identifies one or more IP addresses. Like for example, the domain name microsoft.com represents about a dozen IP addresses. Domain names are used in URLs to identify particular Web pages. For example, in the URL http://www.yoursite.com/index.html, the domain name is yoursite.com. 

Every domain name has a suffix that indicates which top level domain (TLD) it belongs to. There are only a limited number of such domains. For example:
·  gov - Government agencies
·  edu - Educational institutions
·  org - Organizations (nonprofit)
·  mil - Military
·  com - commercial business
·  net - Network organizations
·  ph – Philippines





 
 A WEB HOST is a company that has computers that are hooked up to the internet 24/7. These computers are called servers and they are assigned IP numbers in order that they may be found by other computers hooked up to the internet. It is on these servers that all your web files are stored, be they HTML files (web pages), graphic files, CSS files, Javascripts or whatever.

Basically what happens is when you type a web address into the address bar of your browser and then hit Go, your browser sends out a request to 'get' that web page. The request travels across the internet to the appropriate web server and attempts to locate the web page on that server. If the request is successful (web page exists) then that web page will load (or download) into your web browser.