Simple Steps To making Website Or WebPages

Luther

Active member
Legendary
Joined
Sep 17, 2011
Messages
11,547
Kin
10💸
Kumi
3💴
Trait Points
0⚔️
Awards
There are basically two ways to make a web page. The first way is to 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.

If you are creating your web page(s) offline, do so in any text editing or word processing document. Make sure that when you save your document, you save it as a "text", "plain text" or "text only" document. Otherwise it will not be read properly by a web browser. Once you have created your page(s), you will need to contact your ISP about how to go about uploading them to your server.

If you have a UNIX account, you can create your web page(s) online. You first need to get a program that can access your UNIX account. I recommend Telnet for the Mac or Ewan for Windows 95/98.

Once you can access your account, you need to make a new directory called "public_html". You can do this by typing:

mkdir public_html

After this, change your directory to this new directory called "public_html".

cd public_html

If you want to, you can make other directories, one for all the web pages that you make, and one for all of the graphics that you have. Follow the same steps as above to do this.

Next, you need to think of a filename for your page (this is not a title, but what will be in the URL). A common filename for a main web page, is "index". Once you've decided on this, add ".html" to the end of it. Then type (i.e.)

pico index.html

Of course, use your page's filename, instead of this one. Next, you need to gain some knowledge of the many HTML commands. Lucky for you, I've already gotten some of the basic commands for you. Follow the index below, to decide what to put on your page, and how to do it. Once you've gotten started, exit your page. You can do this by pressing control-x. Then you need to type:

chmod 744 index.html

Only do this with the filename of your page. You only need to do this the very first time that you leave your web page. This command will make sure that nobody else can delete your page. You will need to do this to any other pages that you make in the future. Then, look at your page on the WWW. Lets say that your server is "www.domain.com", your username is "username", and the name of your page is "index.html". The URL would normally be:



However, you will need to contact your ISP for your URL.

If you have made separate directories for pages and graphics, then you need to include that in the URL also. Lets say that you made a directory for all of your web pages, called "Pages". The new URL would be:
Title

The first thing to put on your web page, is a title. The title is what will show up in the very top of the window. Let's say that your title is going to be "John Doe's Web Page", you would type:

<title>John Doe's Web Page</title>

In HTML, every command is surrounded by <'s, and >'s. And in most commands, you need to tell the web browser when to end this command. You do this by putting a back slash (/) in front of the ending command, as in above. Since HTML isn't case sensitive, <title> is the same as <TITLE>, which is the same as <TiTLe>. Next, you need to decide what you want to put on your page. Text, links, graphics, and text fields, are just a few ideas. Follow the table of contents above to decide how, and what to put on your page.


Text


Headings

HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are displayed in larger, or smaller fonts, and usually bolder. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is:

<h1>Hello</h1>
Hello


<h2>Hello</h2>
Hello


<h3>Hello</h3>
Hello


<h4>Hello</h4>
Hello


<h5>Hello</h5>
Hello


<h6>Hello</h6>
Hello


Paragraphs

Whenever you have more than a sentence of writing, you should have paragraphs. Personally, I don't see what the difference is, but I do it anyway, because then I can find a certain spot better when programing. To Make a paragraph of "This is a web page. How do you like what I've done? Please e-mail me with any suggestions at [email protected]", type:

<P>This is a web page. How do you like what I've done? Please e-mail me with any suggestions at [email protected]</P>

The outcome is:

This is a web page. How do you like what I've done? Please e-mail me with any suggestions at [email protected]


Lists

There are two types of lists that you can make in HTML, dotted, and numbered. To make a dotted list of: red, orange, green, blue, purple, black, and brown, type:

<UL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</UL>

The result is:

red
orange
green
blue
purple
black
brown

To make a numbered list of: red, orange, green, blue, purple, black, and brown, type:

<OL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</OL>

The result looks like:

red
orange
green
blue
purple
black
brown


Forced Line Breaks

There are many cases in which you want to end typing on one line, and start on the next. To do this, you can use a simple HTML command. This is one of the few commands that you don't have to put an ending command on. Let's say that you wanted to say "Hello, how are you?", but with each word on a separate line. All you have to type is:

Hello,<BR>how<BR>are<BR>you?

The outcome is:

Hello,
how
are
you?
Horizontal Rules

Every now and then, you might want to have a horizontal rule, or line in your page. Horizontal rules can be many different sizes and lengths. You can also have the line be solid black, by typing NOSHADE. Here are several examples of sizes and widths, and what the outcome is:

<HR SIZE=1 WIDTH=100%>
<HR SIZE=5 WIDTH=50%>
<HR SIZE=25 WIDTH=75%>
<HR SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=1 WIDTH=100%>
<HR NOSHADE SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=10 WIDTH=20%>

Character Formatting

You may want to format some of your text differently than others using text styles. There are several types of styles of text that you can use: bold, italic, underline, strikeout, superscript, subscript, teletype, and blinking text are examples. To do these styles, surround your text with the following commands:

<b>, </b> for bold

<i>, </i> for italic

<u>, </u> for underlined

<strike>, <strike> for strikeout

<sup>, </sup> for superscript

<sub>, </sub> for subscript

<tt>, </tt> for teletype

<blink>, </blink> for blinking text (very annoying)

You can also mix styles together like this!


Linking


URLs

When you make a link, you are making colored text or even a graphic (talked about later). When somebody clicks on this text, it will take them to another web page, or possibly a certain section of a web page. Let's say that you wanted to make a link from your web page, to Yahoo!. The URL of Yahoo! is:

To do this, you would type:

<A HREF="http://www.yahoo.com">What ever text that you want to be colored goes here</A>

The result would be:

What ever text that you want to be colored goes here

You can go ahead and try it if you want to.


Links to Specific Sections

Sometimes, you might want to have a link that will take you further down a page, or to a certain section of another page. An example of this is the index to this web page. You click on the colored text, and it takes you to that section. To do this, you need to do two things. The first, is to make the link, and the second, is to make where the link will lead to. NOTE: You cannot make links to specific sections within a different document unless either you have write permission to the coded source of that document or that document already contains in-document named links.
1) To make the actual link, think of a name for the certain spot. Let's say you are going to call it "spot". If this certain spot is on the same page that the link is, you would type:

<A HREF="#spot">Colored Text

Otherwise, you would add "#spot" to the end of the URL.
2) Now, you need to make where the link will take you. Go to the spot where you want the link to take you, and type:

<A NAME = "spot">
Mailto Links

Most people like to have a link on their web page that automatically sends e-mail to an address. If you want to do this, and your name is Dan, and your e-mail address is [email protected], type:

<A HREF="mailto:[email protected]">Dan</a>

Here is the result of typing this:

Dan
Graphics


Putting Images On A Page

On almost EVERY web page on the net, there is some kind of graphic. I would HIGHLY RECOMMEND that you have AT LEAST one picture on your page. There are mainly two kinds of ways to have graphics on your web page. The first, is to use a graphic that is on another web page somewhere on the web. The second, is to upload the graphic to your own account. Personally, I prefer to use the upload method. If you are using the other way, there is always a chance that the person who made that page will decide to delete that graphic. Then a symbol with a circle, square, and triangle will appear where the graphic was supposed to be, sometimes it will look like it has been torn through the middle:


1)
To display a graphic on some one else's page, you need to find the URL. To do this, I recommend that you have Netscape Navigator. Right click or click and hold down on the graphic, until a menu comes up. Choose "View this Image". Then , copy the URL that appears at the top of the screen, in the "location" box. Let's say that the URL was: You would type:

<IMG SRC="http://www.infhost.com/members/web/Images/pic.gif">

The result is:


2)
To display a graphic that is in your account, all you have to do is type in the filename. If you didn't make separate directories for graphics and pages, then you just need to type the graphic's name.(i.e. <IMG SRC="pic.gif">


Alternate Text for Images

Some World Wide Web browsers cannot display images. Some users turn off image loading even if their software can display images (especially if they are using a modem or have a slow connection). HTML provides a command to tell readers what they are missing on your pages. The "ALT" attribute lets you specify text to be displayed instead of an image. For example:

<IMG SRC="pic.gif" ALT="How to make a web page">

In this example, "pic.gif" is the picture of a sign. With graphics-capable viewers that have image-loading turned on, you see the graphic. With a non-graphic browser or if image-loading is turned off, the words "How to make a web page" is shown in your window. You should try to include alternate text for each image you use in your document, as it is a courtesy for your readers.


Animated Graphics

Some people like to put animation on their web pages. It actually is not that hard. Here is some background history. Most GIFs over the years have only one image per file. According to "technical specifications from 1987", a GIF could have had more than one image per file, making it like a slide show presentation and not a single image. However, most programs that work with GIF are designed around the idea of one image per file. So the multi-image aspect of GIFs was forgotten. In 1989, they added timing and various other abilities to the GIF format, including transparency. Nobody used these new additions either. Then the Web took off. Transparency and interlacing became features people wanted to use and software companies began supporting those features. In order to have animation on your web page, you need to download a program that was made to fit more that one GIF in a file. I recommend GifBuilder for the Mac. Windows users can go here to download another program. Here is one example of a small animation:

Background, text, and link Color

On most pages, you want to have a specific color for the background, text, unvisited links, visited links, and active links. In order to do this, you need to find the code number for the specific color that you are looking for. Here is a HUGE list of code numbers, and here is how you would display this in your page. NOTE: Type these ONLY right below your title. NOTE: You must have the "#" sign before the actual code.

<body bgcolor="#code">for background color
<body text="#code">for color of text (all non-links)
<body link="#code">for color of unvisited links
<body vlink="#code">for color of visited links
<body alink="#code">for color of active links (while being selected)

You can also string two or more of these commands together:

<body bgcolor="#000015" text="#000020" link="#000050" vlink="#7a7777" alink="#8f8e8d">
Background Graphics

Instead of having a solid color as a background, you might want to have one graphic that repeats over and over to create a background. Here are several places that you can go to find background graphics. The text that you would type in for a background called "bk.gif" would be:

<body background="bk.gif">
Linking with graphics

Sometimes on your web page, you might want to have a graphic that is a link. This is quite simple, since you just mix the two commands of linking, and displaying graphics. Here is an example of a graphic that leads to Yahoo:


You can also have a text link next to the graphic that leads to the same place.

Yahoo!

Here is what you would type in for, first the plain graphic-link, and second, the graphic-link with text:

<A href="http://www.yahoo.com"><IMG SRC="http://www.infhost.com/members/web/Images/yahoo.gif"></A>

<A href="http://www.yahoo.com"><IMG SRC="http://www.infhost.com/members/web/Images/yahoo.gif">Yahoo!</A>


Image Maps

Before you create an image map, you need to make sure that your server supports them. Then, you can follow these steps. First, you need to create an image. Draw a picture with sections that could lead to certain places. Second, you need to create an image map file. There are several programs that can do this for you. I recommend WebMap, for the Mac. You can go to Yahoo's Image Map Directory for others.


Fill-out Forms


Getting Started

Fill-out forms let a reader return information to a Web server for some action. For example, suppose you collect names and email addresses so you can email some information to people who request it. This processing of incoming data is usually handled by a script or program written in Perl or another language that manipulates text, files, and information. If you want to, you can write this program yourself, but I have no idea how to do it. I would check with your server. I know that many servers have scripts available for its users. Let's pretend that the one that I'm going to use is called "fb.pl". This will send a response to your fillout form directly to your email address. NOTE: This script is not real, it is just an example. Check with your ISP to see if they have built-in scripts.


Form Method/Action

The first thing that you type for your guestbook is the Form Method and Action. This is where you enter the Perl script. Most servers and Internet Providers have scripts like this that they provide for you. Check with yours. You cannot have any kind of forms without having a script. The address of the one that I'll be using is:
. If you would like the response sent to your email address, and the address is "[email protected]", you would type this for the first two lines:

<FORM METHOD="POST" ACTION="http://www.domain.com/cgi-bin/fb.pl">
<INPUT TYPE="input" NAME="recipient" value="[email protected]">TO:<P>

Here is what it will look like:

TO:


Next, you need to decide what questions that you want to ask, and what you will use to ask them. Before you start, though, you might want to check with your server to see if they have any questions that you MUST ask. I know with some ISPs, you must ask what their email address is, their first name, their last name, and what the subject of their question is. You can use single or multiple text fields, larger fields, checkboxes, radio buttons, pull-down lists and scroll-down lists.


Single or multiple fields

In your guestbook, you might want to ask questions that have a single one word answer. To here is what you would type to have four fields that ask for an email address, a first name, a last name, and a subject:

<INPUT TYPE="input" NAME="from">Your Email Address<P>
<INPUT TYPE="input" NAME="firstname">Your First Name<P>
<INPUT TYPE="input" NAME="lastname">Your Last Name<P>
<INPUT TYPE="input" NAME="subject">Subject<P>

Here is what the result is:

Your Email Address

Your First Name

Your Last Name

Subject


Larger Fields

I would recommend that you have one larger field at the end of your guestbook for comments. You first need to decide how many columns and rows that you want to have. Let's say that you want to have 7 rows, and 45 columns. Here is what you would type:

Please place any questions or comments here:
<TEXTAREA Rows=7 Cols=45 NAME="suggestions"></TEXTAREA><P>

Here is what the result looks like:

Please place any questions or comments here:


Checkboxes

Let's say that you wanted to ask a question like "What are some things that you like to do?" You could have a list of things with checkboxes. If you wanted the list to be: Watch TV, play on the Internet, read a book, play sports, and study, you would type:

What are some things that you like to do?

<INPUT TYPE="checkbox" NAME="like" VALUE="TV">Watch TV<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="internet">Play on the Internet<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="read">Read a book<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="sports">Play sports<P>
<INPUT TYPE="checkbox" NAME="like" VALUE="study">Study<P>

The result:

What are some things that you like to do?

Watch TV

Play on the Internet

Read a book

Play sports

Study


Radio Buttons

If you ever want to ask a question with one answer, you can use radio buttons. If you wanted to ask "What WWW browser are you using right now?", and you wanted to have the choices Netscape Navigator 4.x, Netscape Navigator 3.x, Netscape Communicator, Mosaic, and Microsoft Explorer, you would type:

What WWW browser are you using right now?

<INPUT TYPE="radio" NAME="browser" VALUE="Navigator 4.x">Netscape Navigator 4.x<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Navigator 3.x">Netscape Navigator 3.x<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Communicator">Netscape Communicator<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Mosaic">Mosaic<P>
<INPUT TYPE="radio" NAME="browser" VALUE="Internetex">Internet Explorer<P>

The Result:

What WWW browser are you using right now?

Netscape Navigator 4.x


Netscape Navigator 3.x


Netscape Communicator


Mosaic


Internet Explorer


Pull-Down Lists

Another way to ask a question with only one answer is to use a pull-down menu. You can use the SELECTED command to have an option besides the first be selected, as you will see below. If you wanted to ask "What is your favorite color?", and you wanted the list to be of red, yellow, orange, green, blue, purple, black, and brown, with black selected, you would type:
5 STEPS

Step 1 – Register A Domain Name

We’ve already mentioned that you have to be careful when registering a domain name. Why? Well… many visitors get their first impression about the website based on your domain name. This is why you want to make sure your domain name:

a) Is relevant to the content of your website,
b) Is simple & easy to remember (preferably a catchy phrase),
c) Is short and descriptive
d) Has the right extension (.com, .org, or .net)

Your domain name also plays a big role in the search engines. For example, when someone uses Google to search for ‘dog training tips’, a website whose domain contains these exact words has a much bigger chance of appearing in the search results for that particular term. Also, users are more likely to click through to a website that has its URL relevant to the phrase they were searching for.

) You are now a proud owner of your brand new domain! Congratulations!
Step 2 – Set Up A Web Host Account

Alright, now that you have your domain ready, it is time to put it in use!

How to choose the best hosting provider? There are two simple rules you want follow when making this decision:

1) Avoid cheap offers,
2) Choose an established host!

If you look around a little, you will find tons of hosts offering incredibly low pricing, but is it really worth it? Simply put – if you want your website to run smoothly and not to have large periods of down-times, then no – it’s definitely not worth it.

We would like to suggest a reasonably priced, well established hosting service called Hostgator.

Hostgator has been around for quite some time now and has a reputation of being fast, reliant and a very customer-friendly host. It also offers unlimited bandwidth (very large traffic support) and unlimited disk space (no limit on the upload capacity).

Step 3 – Point Your Domain To Your Web Host

his is a really simple thing to do, but most people freak out when they hear about messing around with their domain, changing stuff like DNS, name servers, etc.

Don’t worry – it is easier than you think. We will guide you every step of the way!

1) Go back to your domain provider, type in:

If you are not already logged in, go ahead and do it at the top of the site:

4) Click on Set NameServers and this little window should pop up:

Select ‘I have specific nameservers for my domains’ and type in the information you were given upon registering your web hosting plan for both Nameserver1 and Nameserver2. Leave the other two blank.

You can find this information enclosed in the e-mail you received from Hostgator when you ordered the hosting service.

Click OK to confirm. Changes will usually take 2 hours to take effect.

5) You’re done!

Congratulations – you have just successfully linked a GoDaddy domain to a Hostgator hosting account! Note that the change might take some time to become effective.

If you experience any further problems regarding this issue, feel free to contact the Godaddy help staff and ask for assistance. They will be glad to help you out.
Step 4 – Install WordPress On Your Site

First of all, what is WordPress and why should you install it on your website?

WordPress is a free platform that has been commonly used by bloggers for many years. It basically allows you to build websites with very little effort on your side. It is a highly customizable, user-friendly and above all – very powerful tool when it comes to the website creation process.

WordPress allows you to use free pre-designed themes so you don’t have to spend a nickel on hiring expensive web designers to make your site look professional. It is also very friendly in terms of search engine optimization. You can install various 3rd party plugins such as the famous ‘All in one SEO’, which greatly increases the search visibility of your website, and so forth.

However, manually installing WordPress can be a hard and time-consuming work, especially if you’re new to this concept…

This is one more reason why we recommend Hostgator!

Hostgator has a built-in, automatic WordPress installer. All it takes is one click, and it is set and ready for use! It’s really that simple.

This is a free feature that comes included with every Hostgator hosting plan.

Steps for installing WordPress via Hostgator auto-installer:

1) Assuming your Godaddy domain is already pointing to the Hostgator nameservers (as covered in the step 3 of this tutorial), go and type in this URL:



2) Use the login information for Hostgator cpanel provided in the e-mail received upon purchasing the Hostgator web hosting plan.

Once you’re successfully logged in, you should be able to see the Hostgator cpanel. This is definitely a place worth exploring, as it offers tons of great features…

3) Scroll down, under the Software/Services category, click on Fantastico De Luxe (the blue smiley guy).

4) Pay attention to the left sidebar, under the Blogs column, there should be a WordPress link:

5) Click on New Installation and follow the instructions provided.

You will be asked to fill in certain information such as your e-mail address, desired wordpress username & password, and some other base configuration stuff.

Warning! – There will also be a field called Install in Directory – Make sure you leave this field blank!

Once you’re done, click Install WordPress!

On the next page, you will provided with the Mysql user name and an access URL. You typically won’t need this stuff at the moment, but you can save it for future reference if you wish.

Click Finish Installation

6) Voilà – You’re done!

WordPress is now successfully installed on your website, along with the default ‘twenty-ten’ theme which you’ll be able change easily, as soon as you regain access to the site (due to the WP installation process).
Step 5 – Configuring Your Website

Once you can access your site and you can see the default theme, just add /wp-login to your main URL and log in using the information you’ve just set up. Another option is to simply follow the login link located in the right sidebar of your homepage.



You should come up with a page that looks like this:

This page is called the WordPress (WP) Dashboard.

Get familiar with this interface – you will be using it a lot. It is the matrix of your website. Every single change on your website will be made using this dashboard.


You too can make a website like nb just believe in yourself i too am into programs so ask me if u need anything
 
  • Like
Reactions: Narutobi Sensei

~Captain Bravo~

Active member
Elite
Joined
Sep 10, 2010
Messages
6,655
Kin
0💸
Kumi
0💴
Trait Points
0⚔️
Well i copied few lines from para and pasted in google.its a case of just copy-paste article nothing else its from

so its usless thing just...you should have provided us the original article's link instead :(
 
Top