Stay connected with us!

dms-cs5-promo-2

How to Make a Website


So you want to create your own website!

Deciding to create a website is exciting, but the process can be scary if you you've never made a site before and aren't a "computer geek." This tutorial teaches anyone how to create a website, without any expensive software or pre-existing technical knowledge. I'll walk you through the whole process, one small easy-to-follow step at a time with plenty of illustrations.

What you need to Build Your Own Website

You'll need the following things to create your first website:

  • Text-editing software. This software is already installed on your computer. In Windows the software is called Notepad. On Mac computers the software is called TextEdit. For simplicity, I am going to assume you are using a computer running any version of Microsoft Windows after Windows 95. If you are using a Mac or other platform, just use an appropriate editor instead.
  • A notebook and pen. You may wish to take notes as we go along or to draw out your website design, so it is a good idea to have these "old-fashioned" tools.
  • FTP software. I'll cover this software when we get that far. Windows includes a free FTP software, but it isn't very user-friendly for new website owners, so I'll refer you to a free application.
  • A web hosting account. If you want to put your website online where the public can view it, you'll need to have an account with a web host. To get started, I recommend obtaining a small account with a host that runs Linux.
  • A good idea! This is, of course, the most important part of creating a new website—without a good idea, no one will ever visit your new site!
  • Any images you want to use on your website. These might include your logo, if you have one, or any images of your product or the subject of your site.
  • A good attitude and a desire to learn. This one is self-explanatory, right? :)

How To Best Use This Tutorial

  • Do every step. This tutorial consists of several examples that all build upon each other. So, to get the most out of the lessons, you should follow the instructions for each step exactly, even if you already understand the particular concept being presented.
  • Type it all out! Because this tutorial is online and not on paper, it is easy for you to copy-and-paste all the text into your own files. Don't do this! The best way to get this information to "stick" in your head is to type it out yourself—that way your brain processes it twice, once when you read it and a second time when you type it out. This helps with the memory process.
  • Create the sample site. I know you want to get started on your new site right away, but by creating the sample site and following the directions precisely you'll be able to find any errors you might make and, by going back to the examples, easily correct them.

Let's Go!

Ready to get started? Great! Let's go to Lesson 1 — The Basics!

 

Lesson 1 — Web Design Basics

Let's dig right in! The first part of creating a new website is figuring out what to create a site about. For the purposes of this tutorial we are going to create a site to rent out a vacation home located in New Hampshire's Lakes Region.

Create a folder named "lakehouse" in your choice of locations. This is where we will be storing the files for our website. Open Notepad and type the following. It's OK if it doesn't make sense to you yet, I'll explain it below.

Example Code
1
2
3
4
5
6
7
8
<html>
<head>
<title>New England Lake House For Rent</title>
</head>
<body>
<h1>New England Lake House For Rent</h1>
</body>
</html>

 


Carefully check your work to ensure that it matches the above exactly. The placement of all the symbols is very important! Now save it in the lakehouse folder you just created with the filename "index.html".

Now open a new browser window and navigate to the file location. For example, if you created the lakehouse folder right on your c:\ drive, you should go to c:\lakehouse\index.html. You should see something very similar to this:

lesson01-screencap01

Did It Work?

If you had any trouble, go back and check to make sure that you typed exactly what was shown above. If you need to, copy and paste each line under what you typed for comparison purposes.

Ready to Go?

Let's move on to Lesson 2 — Some Essential Vocabulary.

 

Lesson 2 — Some Essential Vocabulary

There are some terms that are important for you to know because we'll be using them throughout the tutorial. Here are a few to start:

Index Page
Your index file is the main page of your website. It is called this because that's what you name it: index.html. You created the beginnings of your index page in Lesson 1.
Tag
A tag looks like this: where the word "tag" is replaced by a specific special word. When your browser reads this word it does something special. You used several of these tags in Lesson 1.
Angle Bracket
Angle brackets are the most important symbols in web design. These symbols, < and >, are also known as diamond brackets, cone brackets, wickets, chevrons, and funnels. However, most of us know them from school as less than and greater than signs. Every tag in HTML starts and ends with these symbols. On most keyboards they can be found on the period and comma keys.
Head Section
The head section of your website starts with the tag and includes everything up to and including the closing tag. Most of the data in this section of your website is read only by browsers and search engines, not by humans. Some of the tags you can place in this area help with search engine optimization, which goes beyond the scope of this tutorial.
Title Tag
The title tag of your document specifies what appears at the very top of the browser window on the same (usually blue) bar that has the window minimize/maximize and close buttons. The title is important because search engines read it (among other things) to get an idea of what your site is about. The title tag is always included in the section of your website and is the only thing from that section that is seen by humans.
Body Section
The body of your website is everything that you want people to see—it includes all of your text and images.

The above are important terms, so it is a good idea to try to commit them to memory.

One last essential vocabulary word is doctype. A doctype declaration tells the browser how to interpret your code. There are many doctypes that do all sorts of different things, but only a few that are used regularly. For our purposes we are only going to use a single doctype, so you can just copy and paste it into your index file in the appropriate location:

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Just copy the above at the very top of your document, replacing the line. If you are writing your website in English, don't worry about what it means or what all the parts are—that is a topic for a more advanced tutorial.

If you are writing your website in another language, you should replace the instances of "en" with the code for that language. For example, the code for Spanish is "es", Japanese is "jp", and German is "de".

Let's Go!

Let's move on to Lesson 3 — Adding Text & Links.

 

Lesson 3 — Adding Text & Links

If we're going to entice someone to rent our lake house, we better describe it! Let's add the following to our file, right after the

New England Lake House For Rent

line:


Picture yourself on your next vacation in a spacious 3-bedroom home on beautiful href="http://en.wikipedia.org/wiki/Lake_Winnisquam">Winnisquam Lake in central New Hampshire's Lakes Region.



Whether your favorite season is Winter, Spring, Summer, or Fall, you'll be both right in the middle of the action and blissfully secluded on a private, wooded four-acre piece of paradise!



Call 603-555-5555 today to reserve heaven on earth!

Save your file and load it up in your browser and let's see what we have!

lesson03-screencap01

Well, that was perhaps a bit anti-climactic... We've got a website, but it's a little boring—more like a slightly dressed-up newspaper classified ad than a beautiful website showing off our rental property. But first things first, let's talk about what we did here.

The Header Level 1

Tag

The header level 1 tag is a tag that, like most tags, consists of an opening tag,

, and a closing tag,

. Header tags both affect the way text is displayed as well as signal to search engines that important text has been displayed. There are six levels of header tags, from H1 through H6, but you'll probably never use anything beyond H3. H4 through H6 actually produce text that is as small as—or smaller than—regular paragraph text! H1 is the most important tag and you should use it only once on your page. If you use it more often than that, search engines may decide you are "crying wolf" and penalize your ranking.

The Paragraph Tag

The paragraph tag also consists of an opening and closing tag. Each paragraph in your text should be surrounded by paragraph tags. These tags help set off each paragraph by placing extra white space before and after the paragraph, like hitting an extra enter after the paragraph.

Link Tags

If you forget to close your link tag, the link will just keep going forever and the rest of your page will be one big link!

Link tags are the most important part of the web—without them, we wouldn't have a web at all, just millions of individual web pages with no connections between them.

Link tags are constructed like this: LINK TEXT OR IMAGE

All links start with Wikipedia article on Winnisquam Lake. The opening link tag then ends with "> and your link content follows. Your link can be either text or an image. To get started we're just linking with text. All link tags must end with .

Let's Go!

Let's add some life to this site with Lesson 4 — Adding Images.

 

Lesson 4 — Adding Images

So far our website is pretty boring, it's just plain text with a big title and a single link. Let's liven it up with some images.

Photo of House from Lake Right click on this image, choose "Save Image As" and save it in your lakehouse folder as house-from-lake.jpg. It looks small here, but it will save on your computer as a much larger image. This particular image is 604 pixels (px) wide by 453 pixels high. We'll need this information in a moment.

Find the line

New England Lake House For Rent

in your index.html file and right below it, above the first paragraph, add the following:

 
View of House From Lake

What Happened?

Reload your website and you should see something like this:

Lesson 4 Screenshot 1

Our visitor has to scroll down to see the text, but at least we have an image.

What Did We Do?

The code to add an image is pretty simple. As a base, it's only . The image tag is what is called a "self-closing" tag. This means that instead of having a separate closing tag, it just has /> at the end of the tag.

There are two more important parts to an image. The first is the style. This tells the browser how to display an image. In our example we gave only the most basic instructions—width and height. Later on we'll learn how to add borders and wrap text around our images. Although images will display without any styles specified, to be "valid" HTML, an image must have its height and width declared, so you should always do this.

Be careful when resizing images within the browser because this can affect the time it takes your page to load.

You can change the size of an image by specifying a different height and width in pixels. For example, at the top of the page I instructed the browser to display the 604 pixel wide image at only 150px wide.

If you resize a particularly large image (like those produced by modern digital cameras) using only the browser, it could take a long time for your page to load. A better idea is to use an image-editing application to resize your image to the size you want to display on your page. Most digital cameras come with software that will allow you to do this. There are also many sites online where you can do this for free, including:

Congratulations!

You've created your first website complete with an image and a link! If you were desperate, you could stop here and upload it. But it's not particularly attractive—we should add some formatting.

Let's Go!

Let's move on to Lesson 5 — Basic Formatting.

 

Lesson 5 — Basic Website Formatting

Back in the early 1990s we could get away with a simple website like the one we've created so far. But today web surfers expect a little pizzazz... but we have to be careful not to give them too much or we risk hiding the forest in the trees!

Since this is a Notepad-only tutorial and we're not using an image-editing application like Photoshop (that's an entirely separate tutorial!), we will focus on what you can do to make your site look attractive without needing an advanced degree in graphic design or web development.

Select a Color Theme

Good-looking websites generally have a nice color theme consisting of two or three colors that work well together. Here are some colors that you should generally avoid:

All Black Backgrounds
Unless you are creating a site for teenage gamers or vampires, you should probably avoid an all-black background. Done right, a dark background can look classy, but let's leave that to the professional artists.
Large Areas of Bright Red
Large areas of bright red can actually be painful to the eyes, it's better to just leave out anything that is red except for emphasized text.
Large Areas of Neon Green or Yellow
Like bright red, neon green and yellow are not particularly easy on the eyes.

So what can we use? I am partial to blue themes, and since our sample site is for a house located on a lake in the woods, I've decided to go with a blue/green theme I found on Kuler, an Adobe.com website. This particular theme is called "forest and sky." Here's what it looks like:

forest-and-sky

You can use Kuler to get ideas for a color theme for your own site. Other sites that offer assistance in selecting color themes include:

Another idea is to take a trip down to your local home improvement warehouse and browse through the paint chip samples. If you find one or two you like, take them home and, using some of the sites above, figure out what the color codes are for the most similar web colors.

Select a Size & Layout

If you happen to know for a fact that a large number of your visitors may be less tech-savvy and may have older computer equipment, you may wish to design for an 800 pixel-wide monitor.

We are going to design our site so that it fits on a 1024 pixel-wide monitor, which is a fairly standard minimum these days. Studies have shown that people don't like to scroll much and that they wander away from long pages of text, so try to keep your page length for each page to less than two "pages," or screens of information unless it is absolutely necessary to have a longer page. This is not a set-in-stone law, just a guideline, so don't panic if one of your pages is three screens long and you just can't move any information off of it to another page.

Since this is a beginner tutorial, I've designed the tutorial itself only in Notepad to demonstrate that it can be used for a fully-functional site. We are going to use a similar design for our sample site, but with different colors. When you design your own site you can draw it out on paper to get an idea of what it will look like. Here's a what our site will look like:

Sample Layout

Let's Go!

I'm going to stick to the two screen guideline for this lesson—Let's go on to a new page for Lesson 6 — Using Cascading Style Sheets.

 

Lesson 6 — Using Cascading Style Sheets

Cascading Style Sheets, or CSS, are a big part of what makes the web look the way it does today. They are files that HTML developers create to help keep the look and feel of a site consistent across the whole site. They also make site-wide changes much easier than opening every file and changing it individually!

For example, if you wanted to change the background color of your website, you would open your style sheet file and change only six characters and that would change the whole site. Pretty convenient if you have a site with dozens of pages!

External vs. Internal Styles vs. Inline Styles

There are three types of CSS styles: External, Internal, and Inline. They are processed in that order. So you can over-ride an external style with an internal style and both external and internal styles can be over-ridden by inline styles.

External Style Sheets
This is the type of style sheet that is used most frequently for site-wide styles. External styles ensure that you only need to make a minimal number of modifications to affect the entire site. External style sheets are an entirely separate file from your HTML file. They are used to define page backgrounds, header and paragraph text styles, layouts, etc.
Internal Style Sheets
Internal Style Sheets are placed within the section of your website. The styles defined in an internal style sheet affect only the page on which they are located and they have a higher priority than external style sheets. I do not recommend using them without a very good reason, as they can be a source of confusion.
Inline Styles
Inline styles occur within the content of your page itself. They are useful if you are planning to display something in a certain way only once. For example, if I want to have only one instance of bold green text on a light blue background then I would type the following right in the middle of my sentence:
Text To Be Formatted Goes Here
The term "background-color" references, obviously, the background color. The term "color" references the text color—Why the inventors of CSS didn't call it "font-color" or "text-color," I have no idea! The six characters after the # in each of the background and text colors is the HTML color code. Every color that can be displayed on a monitor has a color code, called the hexadecimal code. Hexadecimal is a way of counting with 16 digits (0–f) instead of the 10 digits (0–9) that we are used to. Its two primary purposes are 1) to make it easier to express very large numbers with a smaller number of characters and 2) to confuse non-computer people. If you want to read about it, Wikipedia has an article about hexadecimal. You do NOT have to learn hexadecimal to create web pages! You just need to know that non-standard colors must be defined with a code instead of a word and you need to know where to find that code. Here are a couple places to find that information:
  • htmlcolorcodes.org — This site shows the basic 216 "web safe" colors and their codes. Older browsers and computers can only display these colors with consistency. Modern browsers (anything manuafactured this century!) have far more capability.
  • html-color-codes.info — This site shows the same 216 colors, but if you scroll down a little there is an HTML Color Picker which looks very similar to Photoshop's color selector. You can click on the large box and use the scroll bar to generate almost any color imaginable... at least within the limits of your monitor.

Adding the External Style Sheet

We need to tell the browser where to look for the external style sheet. To do this, we add a link meta tag to our HTML file. Open up your index.html file and add the following right above the tag.

This tells the browser that we are referencing a style sheet and that it is named styles.css and is located in the same folder as our HTML file (if it were located somewhere else we'd use a different path).

This should have made no visible changes—yet—to your web page, but refresh it just to make sure.

Now open another copy of Notepad (you can have multiple copies open at the same time) and type this:

body    {
        background-color: #c1def0;
        }

Save the file as styles.css in the same folder as your index.html file and refresh. The page should have changed to look like this:

Lesson 6 Screenshot

Let's Go!

Did it work? Let's move on to Lesson 7 — More CSS Formatting.

 

Lesson 7 — More CSS Formatting

Our drawn sample for the concept site has the content of the page inside a centered white box with a dark green background. The color code for the dark green in our theme is 5a7302. To create a centered white box we need to create something called a div. We do this with the

tags.

Go to your styles.css file and add a blank line at the bottom of the file and, below that, the following:

#content {
        width: 800px;
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto;
        background-color: white;
        border-width: 3px;
        border-color: #5a7302;
        border-style: solid;
        }
h1      {
        background-color: #4e94bf;
        color: white;
        font-family: Arial, Verdana, Helvetica, sans-serif;
        padding: 8px;
        margin-top: 0px;
        margin-bottom: 8px;
        }

While we're at it, we're going to make the image 60% smaller, so open the index.html file and change this line:

View of House From Lake

To this:

362px;height:272px;margin:8px;" alt="View of House From Lake" />

Load or refresh your site and you should see something like this:

Lesson 7 Screenshot

What Did We Do?

Here is what we did with the new code:

#content {
With this line we started the definition of a div, or section, named content. The # sign at the beginning says that we're only going to have one section named content on the whole page. It is the id of the div.
width: 800px;
We told the browser to display the content div in an 800px wide area.
margin-top: 20px;
This tells the browser to leave a 200px wide space above our content div.
margin-right: auto; margin-left: auto;
These two commands tell the browser to automatically center the div horizontally. We could have given a pixel or percentage width instead, but auto works best to ensure horizontal centering.
background-color: white;
This tells the browser to make the background of our div white. We could have entered the hexadecimal code for white, #ffffff (or any other color code), here, instead.
border-width: 3px; border-color: #5a7302; border-style: solid;
The commands tell the browser that we want a 3px wide solid border around our div and that we want that border to be the dark green we selected from our color palette. You can put all these commands on the same line like this: border: 3px solid #5a7302, but for beginners it is easier to just write out all three instead of remembering what order in which to put the commands.
h1 {
This opens a definition for the Header Level 1 tag.
background-color: #4e94bf; color: white;
These commands tell the browser to display the header with our darker blue as the background with white text.
font-family: Arial, Verdana, Helvetica, sans-serif;
I'd like a nice bold clean font for our header, so I've selected Arial. Because Arial is not available on all computers, I've given two other specific options followed by a generic option. If the browser cannot find Arial on the computer, it tries Verdana, a similar font. If that doesn't work, it tries Helvetica, another similar font. If it finds none of those fonts it just defaults to whatever the generic sans-serif font is on that computer. It is important to include a generic alternative to help ensure your site looks as much like what you designed as possible.
padding: 8px;
This tells the browser to add 8 pixels of space around the header text so that it isn't jammed up against the border.
margin-top: 0px; margin-bottom: 8px;
By default, Header Level 1 tags have a top and bottom margin built in. So we're going to override that here by telling it we don't want any space above the margin and only 8px below it. If we didn't set the top margin to 0px, there would be a white bar above our header.
Image Changes
To make the image smaller, I took the original width of the image, 604px, and multiplied by 0.6 to get 362px (I rounded up). I did the same for the height. I made these changes in the index.html file and added a margin of 8px around the entire image to put some nice whitespace between it and the border.

Let's Go!

We're getting there, but we still need to add links and format a little more text. Let's move on to Lesson 8 — Lists & Floats.

 

Lesson 8 — Lists and Floats

To match our drawn sample we need to add some links next to the image. In order to accomplish this we are going to utilize an unordered list and we'll float the content image and the list so they appear next to each other.

Go to your styles.css file and add a blank line at the bottom of the file and, below that, the following:

#links  {
        width: 420px;
        float: left;
        font-size: 250%;
        }

        #links a {
                color: #83a603;
                text-decoration: none;
                }

Now open your index.html file and add the following after the image line:

And change the image line so it looks like this:

float:left;" alt="View of House From Lake" />

Load or refresh your site and you should see something like this:

Lesson 8 Screenshot

What Did We Do?

Here is what we did with the new code:

#links {
This section defines a new div called links. This is where we put our large links that appear to the right of the photo.
width: 420px;
We only want this area to cover a little more than half the screen. Take the overall width of our content div, 800px, subtract the width of the photo, 362px, and then subtract the 16px (8px on both sides) of the margin around the photo to get 422px. I rounded down to 420 for simplicity.
float: left;
We need to tell the browser not to display the image alone on a line by itself. The term for this is floating. You can float an item to the left or right. If you float to the left, the items you are floating will appear in left to right order. Most of the time you'll probably want to float things to the left. If you float to the right, the floated item will appear all the way over to the right.
font-size: 250%;
Since there isn't a lot of content on this page and the links are important, we want them to be HUGE, so I've set the font size to 250%.
#links a {
This section defines what the links are going to look like. We'll discuss links more in the next lesson.
color: #83a603;
This is the code for the medium green in our selected color palette. By setting it here, we are telling the browser to always show the links in green instead of the traditional blue (unviewed) and purple (viewed) colors.
text-decoration: none;
Since these items are obviously links, we don't need to have the underline that usually appears for links, so I have removed it by selecting none for the text-decoration property. If I had not specifically set this property it would have defaulted to underline like the Winnisquam Lake link in the page text.

Unordered Lists

An unordered list is a typical list with each item preceded by a bullet, like the one in our sample site. You create a list by starting with

    on a line by itself and then each item starts with
  • and ends with
  • . The list finishes up with a closing
tag. Our list inherits the styles we specified in the lists div in our styles.css file.

Other Lists

You can also make a numbered list, though we won't need that for this site. To create a numbered, or ordered list, use

    and
instead of
    and
. By default an ordered list uses regular Arabic numbers: 1, 2, 3, 4 for each item, but if you need to use a different numbering (or lettering) system, that is also an option.

Email Links

You probably noticed that the link for the Contact Us item in our list looked a little bit different from the other links. Because this tutorial does not cover creating forms, we're just going to have a link for interested people to email us. An email link requires the text mailto: inside of the link. So an email link looks like this:

Let's Go!

We're just about done! Let's move on to Lesson 9 — Finishing Touches.

 

Lesson 9 — Finishing Touches

We have three more things to do to finish up this site: Move the text down under the image and format it, change the color of the Winnisquam Lake link, and format the "Call Today" call to action.

Clearing Floats

When you create a floated item, text just wraps around it—or sometimes disappears completely underneath it! There are several ways to work around this, but we're going to use the simplest. Open your index.html file and make the following change:

style="clear:both;">
Picture yourself on your next vacation in a spacious 3-bedroom home on beautiful

Refresh the page and you'll note that the paragraph we changed now appears where it belongs, below the photo. There are three options for the clear property: left, right, and both. If you select both, as we did, the item you are modifying will appear below all other items that come before it in the code (unless you have some fancy code in there to circumvent this). If you select left or right, it will only clear items on the left or right, respectively.

Paragraph Formatting

Our paragraphs bump up against the edges of our 800px wide content div. In order to resolve this, add the following to the bottom of your styles.css file:

p      {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 125%;
        }

That added a margin of 8 pixels on either side of all of our paragraphs. I chose 8 pixels to match the margin we added previously to the photo. After looking at what the text looked like, I decided to also increase the font size by 25%, since there was so little of it on the page.

Now add the following to the bottom of the styles.css file (there is a dot between the p and the "call to action" in the first line, make sure not to forget it!):

        p.call-to-action {
                text-align: center;
                font-size: 175%;
                font-weight: bold;
                font-family: Arial, Verdana, Helvetica, sans-serif;
                color: #4e94bf;
                font-style: italic;
                }

Link Formatting

Let's add the code first. Open your styles.css file and add the following to the bottom:

        p a    {
                color: #4e94bf;
                }

                p a:hover {
                        color: #ffffff;
                        background-color: #4e94bf;
                        text-decoration: underline;
                        }

Because individuals with special needs (for example, the 7% of males with color blindness) often rely on more than just color to determine whether a bit of text is a link, it is wise to use additional formatting on links.

In the last lesson we formatted the big links next to the photo. Because they are obviously links, we were able to eliminate the underscore without risking visitor confusion. However, we don't want to do that with the link that is in the paragraph text because we would like it to stand out from the rest of the paragraph.

Right now the link in our regular paragraphs (the one to Winnisquam Lake on Wikipedia) just has the default link styles. We're going to dress it up a little bit. We'll leave the underscore so that it is easily identifiable as a link, but change the color. For the "hover" state, we'll change the text color, background color, and remove the underscore.

 

Now the site looks like this:

Lesson 9 Screenshot 1
 

If you move your mouse over the link to the Wikipedia article, you'll see that it changes according to our specifications.

Let's Go!

The first page of the site is finished! Let's skip ahead and assume we've finished the other pages as well (the photo gallery, a page listing available rental times, and a page describing local attractions). Now all we need to do is upload it, so let's move on to Lesson 10 — Uploading!.

 

Lesson 10 — Uploading Your Site

Now that our site is completed and ready to go, we need to upload it. I'm going to assume that you have alread established a web hosting account. Make sure you have the following information ready:

  • Your FTP Server (host) Address
  • Your FTP username
  • Your FTP password
  • The name of the directory/folder on the web server where your files should be stored (probably public_html, httpdocs, or wwwroot)

Get the Software

We will be using FileZilla version 3.3.1 for this tutorial. You can obtain it for free from http://filezilla-project.org/ - just select the right version for your operating system, download it, and install it.

Setting the Software Up

Start up FileZilla and at the top of the window you'll see something that looks like this:

A cropped screen capture of FileZilla showing the host, username, and password fields

Enter your FTP Server address in the first box, your username in the second, and your password in the third. Unless you have been given a special port number, just ignore the fourth box. Now click the "Quickconnect" button and you will be connected to your server.

Once you are connected, the lower panes of the FileZilla window will change to show the files on the server. On the screen capture below, note the areas marked with the numbers "1" and "2". The pane marked with a 1 is your local computer. The pane marked with a 2 is your web server. In the first pane navigate to the location where you have saved your files. In the second pane, navigate to the folder where you will store your files. Your web host will give you the name of this folder. If they have not given you a folder name, check to see if there is a folder named public_html, wwwroot, or httpdocs.

A screen capture of FileZilla highlighting the referenced boxes

Just Click and Drag!

The rest is simple, just click on the files in the first pane and drag them over to the second pane. You can shift-click and drag multiple files at once, if you'd like. Once each filename appears in the second pane, your website is online!

Now open your browser, navigate to your web address, and behold your first website!

How to link to this page



To create a link to this page on your website,
copy and paste the code below to your webpage.




Here's how it will appear on your web page:
How to Make a Website