Posts Tagged ‘family’

PLAN A WEBSITE

in Web Design Basic |

In creating a website we should plan first what is the purpose of making of this website, what information will be provided and to whom information is addressed. Macromedia Dreamweaver is one website making program that have a lot of menus and tools that can be used to design websites that are more creative, you can create a complete site. To get better results, you must design and plan in advance for your website each existing site pages. you may configure your webhosting for best web performance

When starting to plan to create a website, you need website hosting are expected do it gradually and systematically to ensure your site well and successful. Although you will only make homepage person who will only be seen and visited by friends and your family. For those of you private site lecturer, you can use to provide information and services online teaching for your students.

Determine your site goals is the first step that must be you take to making a website. Ask yourself or your colleagues on a website. What do you expect when you have a personal site? Write down all your goals and expectations so that you can remember when the process of designing websites. Goals will be helpful for you to stay focused and have target of the website you want. A website that provides news with a particular subject is very different from the websites that sell products or commercial.

After you determine what you want to accomplish your website, you must determine who is, or target Your site visitors. Actually this is a stupid question, who alone in the world can visit your site. Many people use browser is different from one another, at different speeds, and have or do not have media plug-in additional (example = speaker). All these factors may affect the use your site. Then you must determine the target audience, after which can design your website. Choose your web hosting directory wisely.

CSS Text Rollovers

in Web Design Tips |

CSS Styles are a simple and fast way of making your site look good. In this tutorial you will learn how to make cool text rollovers.

The trick is to use the a:hover style! If you work with Dreamweaver the steps to follow are given below:

  1. In your style sheet choose New
  2. Next choose Use CSS selector
  3. In the drop down menu choose a:hover
  4. Finally, Define your style. You can choose your font, color, bold, underline etc.
  5. You’re done it! It’s easy and fast and really cool!

Text Rollover Effect throughout the site

Copy this code between the head tags

<style type=”text/css”>
<!– a:hover { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; color: #990000} –>
</style>

Text Rollover Effect in a particular place of your site

Step 1: Paste this code between the head tags

<style type=”text/css”>
<!–
.links { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #003399}
.links:hover {font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #FF8B22; text-decoration: none}
–>
</style>

Step 2: Select the link style for the link. An example of the code is given below:

<a href=”link.htm” target=”_parent” class=”links”>Entheos</a>