Skip to main content

GOOD WEB DESIGN



With good Web design, visitors should be able to quickly understand what they are looking at on a Web page without thinking about it.
Simplicity should act as a guide in all Web-based communication. Consider the following
tips:
1) Build your website with public relations in mind. Your club’s online presence can directly affect your  public image. A visit to your site must not only meet your clients expectations but also offer something of interest for the general public, including prospective members or other community groups wishing to partner with.
Some questions to consider:
  • Who is your target audience?
  • What are the objectives of your website?
  • What should a visitor expect from your site?
  • What do you want the visitor to leave with?

2) Provide accurate contact information and an easy way for prospective members to express interest in your club and learn more about joining. Provide more than one way to be contacted, such as a phone number and an e-mail address.
3) Keep all your information current: Update your meeting place and time information as needed, keep your calendar of events and list of speakers up to date, and feature the current year’s  theme logo.
4) In all electronic communications, readers should immediately recognize who is publishing the material and why.
    5) Keep your design clean and simple with one consistent navigation scheme throughout the site. Tap into members’ knowledge of web development and design. However, don’t rely too heavily on one expert who might create a site that only he or she can maintain.
      6) Link to the website and use  RSS feed for an easy source of free content and to improve your search engine rankings.  

      7) Include links to your social media sites
      8) Use simple analytic tools to learn how people are using your site. What information do they seek? Can they find it easily? Does your site serve both club members and prospective members?
      9) Before publishing your content, test it in as many browsers as possible. Not all browsers display information in the same way.
      10) Know your limitations. It’s better to have a simple, up-to-date site than one that’s difficult to maintain

      Comments

      Popular posts from this blog

      Ten output devices, advantages and disadvantages, inter-site back-up mechanism, Expert systems for medical diagnosis,information systems security

      (i)Printer Printer enables us to produce information output on paper. It is one of the most popular computer output devices we often use to get information on paper - called hard copy. Advantage They produce high quality paper output for presentation at a speedy rate. It is also possible to share the printer among different users in a network. Disadvantage The cost for maintenance of the printer equipment as well printing ink is cumulatively high. (ii) Plotters These devices are used to produce graphical outputs on paper. They have automated pens that make line drawings on paper Advantage They can produce neat drawings on a piece of paper based on user commands. In Computer Aided Design (CAD) they are used to produce paper prototypes that aid in design of the final system. Disadvantage They are more expensive than printers. Further, the command based interface is difficult to use. (iii)Monitor It is...

      simple basic object oriented java code for employee salary calculation

      import java.io.*; import java.util.Scanner; public class Employees {     Scanner scan=new Scanner(System.in);     String Fname;   int EmpID;  int DOB; double Allowance;   double Salary;     public void getDetails(){   System.out.println("Enter the first name");   Fname=scan.next();   System.out.println("Enter the ID number");   EmpID=scan.nextInt();   System.out.println("Enter the date of birth");   DOB=scan.nextInt();   System.out.println("Enter the salary");   Salary=scan.nextDouble();   Allowance=0.6*Salary;     }    public void printReport(){    System.out.println(Fname+"\t"+EmpID+"\t"+calGross()+"\t"+calPayee()+"\t"+calNetIncome());    }    public double calGross(){        return Salary + Allowance;    }    public double calPayee(){     ...

      Start Wamp server on windows automatically permanently

      For those that have completely refused to use linux platforms for development, you might find this useful. As with all (aspiring) web developers, it’s always important to test your projects locally before putting it out there for the entire web community to see. One must-have developer tool for this purpose is WAMPServer. We’ve all wished it’s automatically up and running when we need it. These easy steps will help you automate WAMPServer to run on system start-up. For those unfamiliar with WAMPServer, it is a development package that lets you run web development projects locally. WAMP stands for Windows, Apache, MySQL, PHP/Perl/Python. It’s basically four programs packaged to work as one. WAMP basically turns any Windows PC into a localized web server. The Linux counterpart is called LAMP, obviously. Once WAMPServer is installed in your PC, you’ll be able to test your web projects before putting it into the live environment. But I always found it a hassle to manually s...