Archive for December, 2011

WHS Facebook Fan Page!

Tuesday, December 27th, 2011

Facebook Fan PageIt has been over a year since we launched the Facebook fan page and it has been a real success.  At the current date and time, we have over 500 fans and we keep growing every single day.  Are you missing out on the fun?  All you need to do is head over to our Facebook Fan Page and click on the “Like” button on the top of the website.  Then post your Firefox comments, questions or just say hi to some of the other people who are following the Web Hosting Show on Facebook.

Facebook Fan Page Come join the fun on the Web Hosting Show Facebook Fan Page!

© Mitch Keeler 2011 | Check out my firefox help site and my tech blog too!

 



Modify the HTML Body Tag

Monday, December 12th, 2011

There are several HTML tags that can act as modifiers to how the web page looks visually.

First, let us re-visit the body tags. The body tags are there to tell the browser what part of the document is going to be visible to the end user when viewing the web page. This is marked up in your HTML code by putting a <body> where your web page’s content begins and a </body> tags where it ends.

How to Modify the Body Tag

So, any time you modify the body tags, you will be changing the way the web site is seen. There are several body tag modifiers you can use.

Change the Web Page’s Background Color

You can add bgcolor=”VALUE” (replacing VALUE with the name of the color or the HEX number) to change the background color for a web page.

Code: <body bgcolor=”white”> (this would make the background all white)

Change the Web Page’s Text Color

You can add text=”VALUE” (replacing VALUE with the name of the color or the HEX number) to change the background color for a web page.

Code: <body text=”black”> (this would make the text all black)

Change the Web Page’s Link Color

You can add link=”VALUE” (replacing VALUE with the name of the color or the HEX number) to change the color of links on a web page.

Code: <body link=”blue”> (this would make the links all blue)

Change the Web Page’s Visited Link Color

You can add vlink=”VALUE” (replacing VALUE with the name of the color or the HEX number) to change the color of link that have already been visited on a web page.

Code: <body vlink=”red”> (this would make the visited links red)

Change the Web Page’s Active Link Color

You can add alink=”VALUE” (replacing VALUE with the name of the color or the HEX number) to change the color of an active link.

Code: <body alink=”purple”> (this would make the active link purple)

More Helpful Body Tag Tips

You can use more than one of these at a time. If you wanted to, you could use more than one of these body modifiers at a time. you would just need to remember to put a space in between each body modifier. For example:

<body bgcolor="black" color="white">

This is how you would link more than one together, this would tell the browser to make the background of the web page black and the text on the web page white. There is no limit to the number of these modifiers you can use on the body tag, as long as everything is formatted correctly, the web page should come out the way you want it to.

Only add these modifiers to the opening body tag. It is important to note that you only add these modifiers to the opening tag <body> and not the closing tag </body>.

Where can I find the HTML color or HEX values? You can find these many places. One of the best examples, is on w3school.com’s HTML colors page here:

Facebook Fan Page Come join the fun on the Web Hosting Show Facebook Fan Page!

© Mitch Keeler 2011 | Check out my firefox help site and my tech blog too!

 



How to Create the Best Website Navigation

Thursday, December 8th, 2011

The navigation section of your web site is one of the most important factors to a web site.

Why? The navigation is what allows you to move from one section of the web site to the next, linking web pages to web pages, and in all making a web site work. Here I hope to explain why web site navigation is important, along with a few other key factors you should remember when creating your web site.

Organize Your Web Pages

You should have a good idea of what your web site is going to be about, and how you are going to create it before you start with any HTML coding. One tool that comes in extremely handy when deciding navigation and how each page links to each idea is mind mapping. You can learn more about that process here:

As an example let us say you are working on a web site about you, so you have these basic web pages designed and ready to go:

  • The Home Page (the first thing people see)
  • An About Page (which gives more information about you, like your resume)
  • Your Contact Page (might have your e-mail address, or various means of contacting you)
  • Projects and Work (examples of the work you have done, or the projects you have worked on)

Now somewhere, you will need to have your web site navigation on each of the pages. This can be done in a number of different ways, but the most popular seems to be across the top. This way people can go to and from different parts of the web site, just by clicking the links you see on the top. I would suggest having them formatted this way:

Home | About Me | Contact Me | My Projects

Each one should link to the related pages above. A clean-cut and uniform navigation system is really a must.

Web Site Navigation Tips

Here are some more tips you should watch out for when it comes to web site navigation:

  • Create a site map to help people find exactly what they are looking for quickly.
  • There is no problem with highlighting certain pages you think deserve more attention, just make sure they don’t take away from your main web site navigation.
  • Be sure to use short and precise words in your links, so people will know exactly what they are getting.

This is no doubt that navigation plays a huge roll in how successful your web site is and how long they stick around it. If people can not navigate from web page to web page easily, they might grow frustrated and leave the web site all together. So, having a good navigation system means you can keep more visitors both on and returning to your hosted web site.

Facebook Fan Page Come join the fun on the Web Hosting Show Facebook Fan Page!

© Mitch Keeler 2011 | Check out my firefox help site and my tech blog too!

 



Basic Parts of a Website Layout

Wednesday, December 7th, 2011

When it comes to very basic website design, every website layout has four basic elements that you should learn. These are the HTML tags, the head tags, the title tags and the body tags.  Each one plays an important part in presenting your website data to the public.

Let’s look at this example of some very basic website code and then I’ll tell you about each part:

<html>
<head>
<title>My First Web Site</title>
</head>
<body>
This is my first web site.  I hope you enjoy it!
</body>
</html>

The HTML Tags

The <html> and </html> tags wrapped around the text tells you this is an HTML document. They signify the start of the web page and the end of the web page.

The Head Tags

The <head> and </head> tags wrapped around the title tags tell the web browser this is where you can get specific information about this page, and how it is displayed. The head tags must be at the top of the page, after the first HTML tag.

The Title Tag

The <title> and </title> tags tells the browser that what is in between here is the title for the web page. It will be shown (in most browser) at the top of the menu and on the tab you are browsing from.

The Body Tags

The <body> and </body> tags wrapped around the text tells you this is the “body” of the web page, where the content you want displayed in the browser goes.

Remember to Close Your Tags

You might have noticed that these tags come in pair. One of these tags is used to start the command to the web browser, and the other is used to end or close it. For example, when you use the <title> tag, you are telling the web browser, “Hey, this is the web page’s title here, pay attention!”. Now, you need to tell the web browser that you are done telling it the title of your page page. You use the </title> tag to say, “Ok, done telling you what the title is – move along!”

Facebook Fan Page Come join the fun on the Web Hosting Show Facebook Fan Page!

© Mitch Keeler 2011 | Check out my firefox help site and my tech blog too!

 



HTML Basics

Tuesday, December 6th, 2011

Hyper Text Markup Language, or as you know it HTML, is the markup language for most web pages on the Internet.

Now, it is not exactly a language like English or Spanish, which we communicate with verbally. A markup language is a system for editing text in a way that changes how the text looks or how you interact with it. Where you use funny looking code to make one section of text look different than the other, the code in question is not seen by the end user. The server the web page is coming from, and the user’s browser come together to help mesh it together as something that is seen as visually appealing to the end user.

A Simple HTML Example

Here is an example of a web site written in HTML code:

<html>
<body>
<p>This is my first web site.  I hope you enjoy it!</p>
</body>
</html>

Breaking Down the HTML Code

As you can see from the text above, this is a pretty simple example. You have the basic text of the web site, “This is my first web site. I hope you enjoy it!” with several HTML tags wrapped around it. The HTML tags are what give the text commands on how it should be interpreted by the browser.

  • The <html> and </html> tags wrapped around the text tells you this is an HTML document.
  • The <body> and </body> tags wrapped around the text tells you this is the “body” of the web page, where the content you want displayed in the browser goes.
  • The <p> and </p> tags wrapped around the text tells you this should be formatted as a paragraph.

Here are some frequently asked questions somebody might have at this point.

How do you create an HTML file like this one? Best thing to use would be a plain text editor, such as Notepad. The reason for this, is you want the files in question to be saved with no extra markup information included.

How do I save the file as a HTML web page? You will want to save the file with a .html extension at the end. This will tell the web browser that this page is an HTML coded page, and should be read like one. As an example, I saved this file as “test.html”. The “test” name does not matter at this point, it could be anything. We will dive deeper into how to name your HTML files in a later tutorial.

Facebook Fan Page Come join the fun on the Web Hosting Show Facebook Fan Page!

© Mitch Keeler 2011 | Check out my firefox help site and my tech blog too!