iSnare.com - Free Content Articles Directory
Authors Contents [Advanced Search][Add OpenSearch][Job Search]
Distribute your articles to thousands of article sites for only $2 and below! Read more...

Index  Internet
 

Creating Your Own Web Page Is Easy - A Tutorial (Part 1)

 
[ Contact the Author] [ Send to a Friend] [ Article Publisher] [Make PDF] [ Print] [ Bookmark & Share]
 
Read our Terms of Service before reprinting this article. The submitter specified above has claimed the rights to this article.
Efren A.

Yes, it is easy to create a web page though you are not an IT professional or a person who is involved in IT things. A basic web page is made up of simple HTML tags or codes and HTML is easy to learn.

After going through this tutorial, you will learn how to create your own web pages for your website. This includes the following topics divided into three (3) parts:

Part 1:
Outline of a web page
Creating a web page template
Placing invisible comments to your code
Creating a single or double spaces
Creating an ordered list and unordered list
Inserting an image

Part 2:
Creating tables
Using CSS boxes as webpage layout

Part 3:
Linking other pages and other websites
Using CSS in styling your web pages

Let's discuss here the Part 1:

Outline of a web page
Creating a web page template
Placing invisible comments to your code
Creating a single or double spaces
Inserting an image

Outline of a basic web page

If you are new to html, I am now telling you that a web page is simply created with html tags. Html tags are shown as and . Look at the outline of a web page below:

‹html›
‹head›
‹title›

Here you will place the title of the page. The texts here are displayed at the topmost left of a browser or web page.

‹/title›
‹style type="text/css"›

This is the place for Cascading Style Sheets or known as CSS. CSS defines the styles you will use in your web page such as font color and size of the text, background image, boxes, etc. These are effected in the body but most of the style definitions affects only those areas where you use them.

‹/style›
‹/head›
‹body›

Here you will implement the layout using style definitions you have made in the "style" section. Without putting anything here the page will be blank except for the title that will appear at the topmost left of the page. You will also place here the content of your website. It may be mixed of texts, images, audios and videos.

‹/body›
‹/html›

The above must be saved as a html page with extension of html or htm. If you want to see how the above will look like on as a web page, copy the above from ‹html› to ‹/html› and paste to your Notepad or equivalent. Then click File - Save as - type mywebpage.html or mywebpage.htm in File Name - Select All files as file type - Click Save. Then go to windows explorer or file manager and open the file with your browser. See? It is as simple as that. Now, don't close your Notepad and your browser. We will use that in our practice.

As an important note, your homepage or the starting page of your website must be named as index.html or index.htm. This will be first page when your website is called without specifying a particular page. Like this site, if you type http://www.freetipsandwits.com or http://freetipsandwits.com at browser address, it will open the index file. If you like to see it, try clicking http://freetipsandwits.com. You may wonder why the index file is "index.php". Well, this site is php-based but do not bother yourself with this php thing. Familiarize yourself first with html and later you may learn php, asp, jsp, cgi & more. In html, you must save your index file as "index.html" or "index.htm". Pages other than homepage must be saved with descriptive keywords using hyphen as separator. This is for search engine optimization.

‹b›Creating a basic web page template‹/b›

First, I would like you to make a simple web page template. We will use this for practicing the html codes that we are going to learn later. So, in above mywebpage.html, delete all codes you typed earlier and type the following:

‹html›
‹head›
‹title›My Web Page‹/title›
‹style type="text/css"›

‹/style›
‹/head›
‹body›

‹/body›
‹/html›

Leave some spaces between style and body tags. Now, click Save icon or click File - Save. If you accidentally close this file, you can open it by searching the file, right-click it, click Edit or Open with Notepad or its equivalent. To see what it looks like on the web, just refresh the browser use when you opened the html outline a while ago.

Placing an invisible comments to your codes

I would like you to know how to place your comments on your html codes. Web developers normally put comments in some of the codes for future reference particularly for editing. It will be easy for you to find what you're looking for when you are updating or editing your html codes. This will help also other webmasters if you let them edit your codes. These comments are displayed only in raw html codes or in your html editor but not on the web page or browser page. This is done as follows:

‹!-- type your comment here --›

For example:

‹!-- website building tutorial starts here --›
Building your website is easy. Just learn basic html codes and you're done. Don't be afraid of html codes, they are easy to learn. When you start learning html, you will ask for more and more....and so and so forth....until you become an expert web developer.
‹!-- website building tutorial ends here --›

Type the above in your mywebpage.html between body tags. You will learn faster if you retype or remake the above. But if you are in a hurry, you may copy and paste it. Save it by clicking the Save icon or File - Save.

Now, refresh your browser for the above html file. See? Yes, you can't see your comments between ‹!-- and --›. So, for your reference and easier editing of your codes in the future, don't forget to place your comments.

Making a line to break or creating a blank line space

If you want to break a line or create a blank line space, use this break tag ‹br /›. See how it is used below:

-This will break affiliate‹br /›marketing from word "affiliate".

-This one will break this web‹br /›site from letter "web".

-This one will result in a double line space search engine‹br /›‹br /›optimization from the word "engine".

You type this within the body tags of your mywebpage.html, save it and refresh your browser. Yes, the sentence is broken and second row started with "marketing" the word before the break tag. The word was also divided into two with the next row started with "site", broken from word "website". The two consecutive break tags created a double space between "engine" and "optimization".

Making an ordered list and unordered list

This is useful when you are enumerating or listing something. See the illustration below:

Ordered list

‹ol›This is Ordered List
‹li›Item 1‹/li›
‹li›Item 2‹/li›
‹li›Item 3‹/li›
‹/ol›

Now type the above in your mywebpage.html within the body tags, save it and refresh your browser and see the results. See? It's sequentially numbered. Now, here is the unordered list:

Unordered list

‹ul›This is Unordered List
‹li›Item 1‹/li›
‹li›Item 2‹/li›
‹li›Item 3‹/li›
‹/ul›

Now type the above in your mywebpage.html within the body tags, save it and refresh your browser and see the results. Now, it's not numbered. It's in a bullet format.

Inserting an image

You may place an image to your web page by inserting these codes where you like the images to appear in your web page:

‹img src="http://your-domain-name.com/image-directory/image-file.gif" alt="image description" height="???" width="???" border="???" /›

Looking at the above html codes:

"img" is the image html tag;

"src" is the source or the path of the image file with extension of gif, jpg and png;

"alt" is the alternative text description in case the browser could not display an image;

"height" and width are the dimension of the image;

"border" is the outline of the image.

Now, do these:

-Replace the above domain name, image directory and the file name with yours.

-Replace the values of "alt" with your own description. This is required for SEO or search engine optimization;

-Replace the values of "height" and "width" with your preferred dimensions of your image in pixel without distorting it. The size of the image will adjust based on the dimensions you specified. Fixing the height and width of the image will make it load faster;

-Replace the value of the "border" with the border thickness you preferred. 0 is no border.

To try the above, get an image from your file and copy it to the directory where your mywebpage.html is located. Now, type the above codes in your mywebpage.html but replace the src="http://your-domain-name.com/image-directory/image-file.gif" with src="image-filename". Then, save it and refresh your browser to see what it looks like in the web browser.

Continue with Part 2.

Important NoticeDISCLAIMER: All information, content, and data in this article are sole opinions and/or findings of the individual user or organization that registered and submitted this article at Isnare.com without any fee. The article is strictly for educational or entertainment purposes only and should not be used in any way, implemented or applied without consultation from a professional. We at Isnare.com do not, in anyway, contribute or include our own findings, facts and opinions in any articles presented in this site. Publishing this article does not constitute Isnare.com's support or sponsorship for this article. Isnare.com is an article publishing service. Please read our Terms of Service for more information.

Efren A. can help you Make Money At Home, Work At Home and Home Schooling with free seo tools, free ad posting, money making ebooks and many free stuff.

Article Tags: html [See Dictionary], page [See Dictionary], web [See Dictionary]
Got a question about this article? Ask the community!
Article published on May 17, 2007 at Isnare.com
 
Rate this article:

Top 7 Money Making Ideas To Make Easy Money Online
Submitted by: Efren A.

If you are looking for ways to make easy money online, here are the top 7 money making ideas you may consider...

Creating Your Own Web Page Is Easy - A Tutorial (Part 2)
Submitted by: Efren A.

Now, Let's continue with Part 2 We will discuss the following here: Creating tables and Using CSS boxes as webpage layout...

Quick and Simple Overview on Webhosting Services
Submitted by: Ani K

In the present internet world, if we think of something we can get it with in no time It is possible because of the ease of access to the internet where one can search for anything and can get the best result...

How Important is Web Design?
Submitted by: Derek Rogers

Many small business owners ask themselves the same question, "just how important is web design for the success of my website and my overall business...

How to Choose a Content Management System
Submitted by: Derek Rogers

A content management system can be an extremely powerful tool to have your disposal When properly matched with the needs of a particular company, it can be a seamless way to add more content to a website, edit existing content and quickly move things around, manage your materials and more...

How to Choose a Web Design Agency
Submitted by: Derek Rogers

When developing a website, there are many factors that you have to consider After all, your website isn't just an online destination; it's the online representation of your business and your brand...

Is Small Business Web Design Different to Larger Companies?
Submitted by: Derek Rogers

If you're ready to develop your own website and online presence, of course you are thinking about getting your own specific needs met...

Optimizing Your Affiliate Pages
Submitted by: Diana White

With no doubt, Affiliate Marketing is one of the most rewarded jobs in the Web However, it is not an easy field to rank due to the raising competition...

Online Shopping - For Hottest Deals
Submitted by: Robert E. Finch

This is the age of internet and people like to do all their research over the net before they finalize on something...

5 Tips For Website Project Success
Submitted by: Vann Baker

Many website projects actually fail before they even get started This is not intentional, but with technology-driven projects, it is easy to get derailed before the train is out of the station...

Five Tips to Discard Google and Create an Alternative SEO
Submitted by: Klast Munevar

Undoubtedly, Google is the major search engine and the king of the Internet As a logical consequence, all the internet marketers ―independently if they're PPC or affiliate based― know the advantages of working along with its incredible power and the real advantages of its positioned name...

Redesigning Your Website For Success
Submitted by: Vann Baker

What exactly is website "redesign" and why is it necessary Re-designing a website is often thought of as being more of a graphic design process—taking an older website and give it a totally new look so visitors and customers will take notice, or perhaps adding more content to the website so information is readily available to existing or potential customers...

Website Request For Proposal (RFP)—Invaluable
Submitted by: Vann Baker

Why do website projects fail or fall short of expectations Many businesses have the experience of their last website project taking far too long to complete, going over budget and in the end just did not measure up to expectations...

What is a Content Management System (CMS)?
Submitted by: Vann Baker

A content management systems, or CMS, is a great way to manage the content of your website, especially if you have a larger website and different people who are responsible for different parts of the website...

Web Hosting Explained For Newbies
Submitted by: Loren Squires

Introduction Very basically, web hosting is renting space, and certain services, on a fairly powerful computer called a ‘server’, or ‘web server’, that is connected to the internet...

How to Discover the Finest Work at Home Idea?
Submitted by: Seomul Evans

A lot of people are pulled in by their ambition of being able to make an income working online from home...

Basics Internet Marketing Tips You Can Afford to Miss?
Submitted by: Seomul Evans

Online marketing is more important than early kinds by traditional marketing particularly from the point by view of an average out Joe as if you and me...

Isnare.com Footer Divider

© 2004-2009. Isnare Free Articles - An Isnare Online Technologies Free Articles Project. All Rights Reserved.   Privacy Policy