Getting Started
- How are you going to store all the files? Are all the files going to be in the same folder or directory? If you plan on having lots of different pictures and files its recommended that you store the pages, files, and pictures in separate directories.
- Are the HTML files going to be stored as .HTM or .HTML files? There is no advantage or disadvantage of going with .htm or .html; However, it is a good idea to stick with the same extension.
- Do you plan on having a template for the page? Are all the pages going to have the overall same look and feel?
- How is the navigation going to be handled? Do you feel its better for the navigation menu to be on the left, bottom, or top of each page?
Writing basic HTML
Your web page content goes here
Below, is additional code that can be placed in the
section of the code to help familiarized you with some of the most commonly used HTML commands.
Welcome to my web page
Hello and welcome to my first website.
These are my favorite links:
As you can see from looking at the above code, you will realize that the basic HTML commands are fairly simple to use. First, we start off with
or
heading one statement, which tell the browser to display the text in the
largest heading. Next, the
tag tells the browser to display a
line straight across the screen. The third line contains
that creates a break on the page. Next, the
is short for
"paragraph" and helps separate the text in the page. Next, the
tag is short for bold and will bold the text contained with the tag. In
the next section the starts a bullet list
and each bullet is represented by the
- See our HTML and Web design help page for a listing of HTML commands and related content.
Viewing the website
Now that you have created a basic website you may want to verify how the website looks. Being that you have files locally stored on your computer you will not need to connect to the Internet to view your web page.
Open the computer browser and type the location of your web page. For example, if you have placed the index.htm or index.html file within the webpage folder, you would type in the browser c:\webpage\index.htm or c:\webpage\index.html if you are using an IBM compatible computer. If you have Microsoft Windows or Apple, you can also double-click the web page file so it opens in a browser automatically.
Tip: Some HTML editors also allow you to preview the page by clicking the preview button within the HTML editor.
Viewing a web page locally allows you to experiment and make sure the page works before taking the time to upload the page to the server. This also is useful if you do not have a place to store your web page.
Displaying images
Now that you have created a basic website you can improve the looks and feel of the website by adding images to the web page. There are two methods of displaying images on your web page. The first method is linking to another website to display the images by using the below code.
Using the above HTML tag you can display images off of other websites, which is also called a hotlink. However, we recommend that you do not do this if possible as it can cause your web page to load slower and could cause missing pictures to occur if the other site removes or moves the location of the picture to an alternate location. The alternate and recommended method would be to use the below code.
or if you have an images folder:
If the mypic.gif exists on the computer the picture is shown on your website. Adding pictures is an excellent way to spruce up the website. However, do not get to carried away, adding several images (especially animated images) can look tacky and slow down the time the web page loads. Remember, the average time someone looks at a website is 10 seconds.
Finally, never place large sized images on your home page. Large images will slow down the web page dramatically and may cause the visitor to leave. If you would like a large picture on your website, it is recommended that you create a small image called a 'thumbnail'. If the user is interested they can click the thumbnail to view a larger image.
Understanding directories
When creating other directories (folders) on the computer that contain other images or HTML files, it is important that you understand the directory structure of how the server will access other folders. Many times, users will mistakenly create a bad directory that allows the page to work offline but not on the Internet or from another computer.
When accessing files in other directories that are ahead of the current directory, first specify the directory and then the file name. For example, if you are trying to access or display the image file mypic.gif in the image folder, create the link as shown below.
image/mypic.gif
Notice in the above line that the directory is first specified and then the file.
Next, if you wanted to access the image file mypic.gif that is back one directory, you would want to use the example below.
../mypic.gif
In this example, notice the two dots (..) these tell the browser that you want to go back one directory. If you wanted to go back one directory and then into another directory you would first do ../ and then the directory as shown in the example below.
../other/mypic.gif
This rule can be applied to as many directories back as possible. For example, if you wanted to go back three directories and then go into the images directory, then you would use the example below.
../../../image/mypic.gif.
A common mistake with PC (Windows) users is that the HTML editor may specify the file to be located in the computer hard drive such as c:\mywebpage\image\mypic.gif. This will work fine on the computer hard drive (locally); however, when posted on the Internet, no one but the person with the file locally will be able to display the file.
Finally, remember when specifying the directory that you are using a forward slash (/) and not a backslash.
0 comments:
Post a Comment