This HTML Tutorial is about how to create your first Web page by coding HTML using a text editor (such as NotePad) and then viewing the document using your Web browser.
To create HTML code for your Website you can use a HTML template, HTML editor, manually create your code or a combination of these methods.
There are three ways you can create a Webpage:
- Use a pre-made HTML template;
- Use an HTML editor;
- Use a text editor such as Notepad and write your own HTML code.
You may also create the page(s) offline and then upload them to your Internet Service Provider (ISP) via FTP. The second way is to create your web page(s) online using a Telnet program by accessing your UNIX account, if you have one.
To begin a Web page you will open a simple text editor like Windows NotePad for the Windows operating system.Open your notepad file and start writing the following text on it,
<HTML>
<HTML> is the opening for any HTML Web Page. HTML stands for HyperText Markup Language.
When you consider that the text you coded is enough on the document and want to end, the last thing that should be coded is the closing </HTML>. Notice the forward slash this time in front of the HTML letters. The forward slash precedes letters to close HTML "tags". So far what you have coded looks like this:
<HTML>
</HTML>
But till now you are not able to see anything on your browser window as it is just open and close of an HTML document.
Every HTML document consist of HEAD section, and a part of the document above the BODY. The <HEAD> section contains a lot of information and a title but not the information nor the title which will appear on your actual Web page. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is:
<h1>Hello</h1>
HTML has six levels of headings, numbered 1 through 6. Through this 1 to 6 level consist of font size. The new line should be <TITLE>My First Web Page</TITLE>.(This is not the title that will be seen on your page but rather is the title which will be used by search "spiders", "robots", search engines. your first Web document looks like this:
<HTML>
<HEAD>
<TITLE>My First Page</TITLE>
</HEAD>
</HTML>
Bookmarks