Free Essay

Web Design

In:

Submitted By sujaykhot1
Words 2397
Pages 10
The World Wide Web provides a new paradigm in computer networking for human communication, which had an impact on the delivery of information and continues to stand in rapid developments.
The word Web Technology represents a discontinuity in the way applications are connected. Using the Web Technology as the basis for an application brings substantial advantages to the adopter.
This report focuses on 2-tier architecture and mainly on the 3-tier architecture, which is the present web technology. This report will also review the client-side scripting and the server-side scripting.

TABLE OF CONTENTS

EXECUTIVE SUMMARY 2
1. Introduction 3
2. Need for technology 4
3. Terminology 5
4. 2-Tier Architecture 5
5. 3-Tier Architecture 7
6. Client Server Architecture 10
7. Conclusion 12
REFERENCES 13

1. INTRODUCTION

Web sites have quickly evolved from simple, static pages to complex Web applications performing critical operations for many businesses. These applications involve dynamic data from multiple sources; ever changing and various features for e-commerce, personalization and many more.
At the same time, customers and internal users have understandably come to expect and demand more and more sophistication in the Web-based applications they use every day. The result? Web application solution providers — and their client companies — face several new challenges. They must meet or exceed increasing user demands and deliver information quickly while adapting to each new stage of the evolution. Yet addressing these challenges effectively requires efficient technologies for application development.

2. NEED FOR TECHNOLOGY

Important trends in computing which help in shape up new web technology and services are
Ubiquity: decreases in the size of web server hardware and software, web services embedded in numerous consumer items, wireless communications, and protocols to support mobile networking.
Dynamic content: use of Java as well as both server-side and client-side scripting languages, video/audio/text conferencing, more sophisticated services hiding behind web front-ends.
Reliance on open standards and open source: software quality and reliability are not correlated with the cost of software or its associated support services; innovation is often more rapid where source code is openly available. To meet the above the trends in web technologies we provide some architecture along with their own advantages and disadvantages.

• 2-tier architecture
• 3-tier or Multi-tier architecture

3. TERMINOLOGY

• Client computer: The computer that is at remote place connected to server via Internet.
• Server: which provides services to client up on client’s request.
• UI code: code for the user interface i.e., displaying buttons and lists of data.
• Database code: code that talks to a database system to fetch or store data.
• Business logic: code that processes the fetched data according to commands from the UI.

4. 2-TIER ARCHITECTURE

Two tier software architectures were developed in the 1980s from the file server software architecture design. The two-tier architecture is intended to improve usability by supporting a forms-based, user-friendly interface. On a logical level the typical client/server architecture is best described as two tier, simply because it only consists of two parts working together. In other Words: The client directly talks to the server.
(Simple 2-tier will look like this)
At one extent client is used only to perform the display portion of the presentation component, and the server performs most of the presentation logic and all of the business and data access logic. This leads to a fat server and can be found e.g. in typical web-applications where the browser has to cope with HTML. At the other extreme, most of the application resides on the workstation, and the server only performs the actual data access services.
ADVANTAGES:
• The GUI development tools allow faster development and deployment of applications.
• By offloading much of the application processing to the desktop workstations, the server systems do not need to be as large.
DISADVANTAGES:
• The two-tiered approach loses a lot of the security, reliability, scalability.
• The two-tiered model works effectively as long as simple applications are developed, exactly one relational database is accessed, and a small user base is supported. But as applications become more complex, in terms of business algorithms processed, number of databases accessed, or number of users supported, the two-tiered approach starts to fall short.
• Without the tight security controls provided by a centralized environment, each client application must enforce its own security process. Since the relational databases can be accessed from a number of different clients, each database must also enforce its own security process.
Due to more complex client applications, the size of the application increases; the client hardware platform has to increase in terms of processing power and memory. In addition, as the number of users accessing the database increases, the server hardware platform requires higher capacity. As a consequence the solution to scalability problems in two-tiered client/server is to buy a bigger box, both on the client side and the server side. It also improves scalability by accommodating up to 100 users (file server architectures only accommodate a dozen users), and flexibility by allowing data to be shared, usually within a homogeneous environment. Finally this type of distributed architecture requires minimal operator intervention, and is frequently used in non-complex, non-time critical information processing systems. There are multiple "client" machines on which the programmer's code sits. The program talks, via a network, to a database, which sits on a "server" machine.

5. 3-TIER ARCHITECTURE

Why 3 tier? : Unfortunately the 2-tier model shows striking weaknesses, which make the development and maintenance of applications much more expensive.
• In 2-tier architecture, business-logic is implemented on the client.
• Increased network load: since the actual processing of the data takes place on the remote client, the data has to be transported over the network. As a rule this leads to increased network stress.
• Clients are not to be trusted in terms of security, i.e. they are relatively easy to crack. Nevertheless, sensitive data is transferred to the PC, for lack of an alternative, and etc.

3-tier architecture is developed to solve these problems. This goal is achieved primarily by moving the application logic from the client back to the server.
Due to the increasing performance needed in Distributed Computing, two tier architectures become more and more out-dated by the huge load that each client directly talking to the final server would cause. Intervening servers (and therefore on a logical layer a middle tier) enlarge the architecture to handle the task.
The 3-tier software architecture (also known as three layer architecture and also referred to as multi tier architecture as the middle tier may consist of several tiers by itself) emerged in the 1990s to overcome the limitations of the 2-tier architecture. The third tier (middle tier server) is between the user interface (client) and the data management (server) components. This middle tier provides process management where business logic and rules are executed and can accommodate hundreds of users (as compared to only 100 users with the two tier architecture) by providing functions such as queuing, application execution, and database staging. The three tier architecture is used when an effective distributed client/server design is needed that provides (when compared to the two tier) increased performance, flexibility, maintainability, re usability, and scalability, while hiding the complexity of distributed processing from the user. As shown in figure 3-tier architectures implement a form of client/server architecture, where application is divided into three layers:
• The data layer
• The logic layer, or middle-tier
• The presentation layer, or client
The logic layer differentiates three-tier from ``traditional'' two-tier client/server architectures. In practice, it means that the fat clients from the traditional client/server model have been broken into two pieces:
• A thin client, usually a Web browser for display and data entry
• The application logic, running on a server.

Security is also the best in the three-tier architecture because the middle layer protects the database tier.There is one major drawback to the N-tier architecture and that is that the additional tiers increase the complexity and cost of the installation.This architecture has some unique advantages - for example, deployment is made easier because the client is simple and logic is centralized.

Multi-tier looks like this: ADVANTAGES:
• Clear separation of user-interface and data presentation from application-logic. Through this separation more clients are able to have access to a wide variety of server applications.
• The 3-tier architecture physically forces the separation of the deadly combination of UI and business logic.
• Since data traffic between UI and business logic is generally fairly low a high bandwidth network is not needed to connect clients with the middle tier. Data traffic is high between middle tier and database, but they are also physically close often sitting next to each other, thereby radically reducing the cost of the expensive high-bandwidth networking that is usually required to connect them for their high traffic needs.
• Business Logic sits on one machine only: This has a very practical implication: instead of updating 10, hundreds or thousands (possibly even millions) of client machines for every change to the business logic only the middle tier server(s) need updating.
Until now what we have discussed is how the 2-tire and 3-tire architecture will be, and their advantages & disadvantages. Let put our concentration on client/server architecture and how the clients will communicate with database via servers.
6. CLIENT SERVER ARCHITECTURE

Client/server networking grew in popularity many years ago as personal computers (PCs) became the common alternative to older mainframe computers. Client devices are typically PCs with network software applications installed that request and receive information over the network. Mobile devices as well as desktop computers can both function as clients.
A server device typically stores files and databases including more complex applications like Web sites. Server devices often feature higher-powered central processors, more memory, and larger disk drives than clients.The client-server model distinguishes between applications as well as devices. Network clients make requests to a server by sending messages, and servers respond to their clients by acting on each request and returning results. One server generally supports numerous clients, and multiple servers can be networked together in a pool to handle the increased processing load as the number of clients grows.
A client computer and a server computer are usually two separate devices, each customized for their designed purpose. For example, a Web client works best with a large screen display, while a Web server does not need any display at all and can be located anywhere in the world. However, in some cases a given device can function both as a client and a server for the same application. Likewise, a device that is a server for one application can simultaneously act as a client to other servers, for different applications.
Client/server architecture is a model for Distributed Computation. In this model, programs called servers ‘listen’ on a communication channel for requests from other programs, called clients, which are generally running on different machines elsewhere on the network.
CLIENT: A terminal, which is at front end, is a client. A client can send requests to the servers. A client uses web browser in order to send requests for data and to get responses from server. Features of the web browsers are information retrieval, Hyper text.. If we assume the web as backbone of the Internet then the front end to the web is a point-and-click interface.

CLIENT SIDE SCRIPTING: World Wide Web scripting on the client side is a recent development that transforms the behaviour of web page. By using client- side scripting languages like HTML, DHTML, CSS, JAVASCRIPT, we can represent the page in the way such that the client or user can interact and we can also design the document in a desired way.

ADVANTAGES:

• We can validate the input information without the server’s concern.
• We can save the browsing time since there is less possibility of lagging.
• It comes handy for secure browsing.

SERVER: As the name insists, it offers services that can be reached over the network. Typically sever contains server S/W and web pages. Depending on the functions of the server they were classified as Application server and Web Servers.

SERVER SIDE SCRIPTING: Sever-side scripting is used to enable an HTTP server to communicate with other resources such as databases and incorporates data obtained from them into its responses. In particular side-side scripting are used to enable a server to construct web pages dynamically from time varying data. Some of the server-side scripting languages are Perl, ASP, and JSP.
APPLICATION SERVER: Applications servers are nothing but Database servers, which respond to clients request and return a set of records. Some of the popular application servers are
• Oracle Server
• MS SQL Server
• Web Spear
• BEA Web Logic

WEB SERVER: A web server is a program that offers a service that can be reached over the network. Sometimes web servers also called as Web Sites. First web server was developed in 1991 using line mode browser as client. Generally web servers were built with high hardware functionalities (configuration), in order to server the multiple requests from the clients in parallel. Key Constraints in setting up a web server
• Web Server S/W
• Hardware Platform

7. CONCLUSION
As we seen, it is inevitable that using web technology is reliable in daily life. In near future we can even expect well diversed customized and automated web technology so that there is no need of human involment in organizing the servers. We can also conclude that designing and developing the much more sophisticated clients’ s/w and server s/w and architectures will lead to efficient communication and much better data rate over the network.

REFERENCES

[1] P Andersen - 2007 - 21stcenturywalton.pbworks.com
[2] D Chatterjee, R Grewal, V Sambamurthy - Mis Quarterly, 2002 - JSTOR [3] P Brusilovsky, J Eklund, E Schwarz - Computer Networks and ISDN …, 1998 - Elsevier
[4] HK Bhargava, DJ Power, D Sun - Decision Support Systems, 2007 - Elsevier
[5] S Stephens, A Morales, M Quinlan - Intelligent Systems, IEEE, 2006 - ieeexplore.ieee.org
[6] E Antezana, M Kuiper, V Mironov - Briefings in bioinformatics, 2009 - Oxford Univ Press
[7] S Doyle, M Dodge, A Smith - Computers, Environment and Urban Systems, 1998 - Elsevier

Similar Documents

Free Essay

Web Design

...Website Evaluation and Prototype for Redesign Introduction Team A has been working together to create a list of essential design criteria for evaluating the Berry’s Bug Busters Website, a virtual organization. The team also completed a comparative review of two sites that have similar audience and purpose to the Berry’s Bug Busters Website. The intended audience for this website is people over the age of 18 that find themselves with a pest problem. There are no specific demographics related to the service offered. These two sites are Orkin and FreedomPest, which provide some useful examples of ways to improve upon the curent design of Berry’s Bug Busters Website. The following is the list of design features: Design Features 1. A chat window so that customers can talk about their pest issue with an expert to answer any questions 2. Incorporate social media logins such as Facebook and twitter to increase our customer base. 3. A drop down window which will help them search for the pest that they are having trouble with and explain the behavior and diet of such pests. 4. Have a taskbar that lists our services, pests, testimonials, schedule an appointment or to contact us. 5. List our accreditations and licenses. 6. Create a space for regular customers to open an account, gaining access to “privileges” such as discounts and complimentary services. (Log in). 7. Link building. Adding links to our business profile in directories...

Words: 1936 - Pages: 8

Free Essay

Web Design

...offer. Successful web design relies heavily upon a visual concept. Without effective visual design, almost everything on the internet is meaningless. It is visual design that grabs people's attention and encourages them to analyze the piece more carefully. The internet is a primarily visual realm, which is why interactivity, visual elements, and new technologies are such important aspects of great web design. “Since the 1990s (and really, for a select few people, even before that) website design was something that developed very, very quickly and changed rapidly over time. Website companies across the board have taken time and care to make sure that they are innovative and pushing boundaries, while also providing for viewers, visitors, and customers everything that they could possibly need to get the most out of their respective websites and other uses. Today, HTML5 looks poised to be one of the website designs of the future, but how exactly did we get here to where we are? And where have we come from with web design theory and practice, to reach 2013? Back in the early 1990s, HTML (the first iteration) was considered major website technology and innovation. Since then, CSS 1 and CSS 2, Javascipt, Flash, XHTML1, and even AJAX more recently have all come under as the hottest new thing in web design, some lasting mere months before something better innovated across the board. To get to where you are, though, you must know where you’ve come from – and with web design, that process...

Words: 3287 - Pages: 14

Premium Essay

Web Design

...DarkTower Function Design Specification For Omahasteaks.com Professor: Facilitator: Submitted: 16, June 2012 SECTION 1.0 OVERVIEW.........................................................................................................4 2.1 Company Information………………………………………………………………4 2.2 Site Goal……………………………………………………………………………..4 2.3 Organizational Culture…………………………………………………….............4 2.4 Affects of Physical Settings on Information Access and Use...........................4 2.5 Primary Audience and Secondary Users…………………………………………5 2.6 Audience Demographics and Psychographics…………………………………..5 2.7 Primary Use of Product or Service………………………………………………..5 2.8 Role of Current Resources………………………………………………………...5 2.0 VISUAL AND FUNCTIONAL DETAILS..............................................................5 3.9 Internal/External User Site Map…………………………………………………...6 3.0 SPECIFIC REQUIREMENTS..............................................................................7 4.10 Performance Requirements………………………………………………………..7 4.11 Platform………………………………………………………………………………7 4.12 Database…………………………………………………………………………….7 4.13 Security………………………………………………………………………………7 4.14 Site Hosting………………………………………………………………………….8 4.15 Major Pages, Functions, Features and Use Cases……………………………..8 4.16.1 Home Page…………………………………………………………………9 4.16.2 Search……………………………………………………………………...

Words: 2592 - Pages: 11

Premium Essay

Web Design

...DarkTower Function Design Specification For Omahasteaks.com Professor: Facilitator: Submitted: 16, June 2012 SECTION 1.0 OVERVIEW.........................................................................................................4 2.1 Company Information………………………………………………………………4 2.2 Site Goal……………………………………………………………………………..4 2.3 Organizational Culture…………………………………………………….............4 2.4 Affects of Physical Settings on Information Access and Use...........................4 2.5 Primary Audience and Secondary Users…………………………………………5 2.6 Audience Demographics and Psychographics…………………………………..5 2.7 Primary Use of Product or Service………………………………………………..5 2.8 Role of Current Resources………………………………………………………...5 2.0 VISUAL AND FUNCTIONAL DETAILS..............................................................5 3.9 Internal/External User Site Map…………………………………………………...6 3.0 SPECIFIC REQUIREMENTS..............................................................................7 4.10 Performance Requirements………………………………………………………..7 4.11 Platform………………………………………………………………………………7 4.12 Database…………………………………………………………………………….7 4.13 Security………………………………………………………………………………7 4.14 Site Hosting………………………………………………………………………….8 4.15 Major Pages, Functions, Features and Use Cases……………………………..8 4.16.1 Home Page…………………………………………………………………9 4.16.2 Search……………………………………………………………………...

Words: 2592 - Pages: 11

Premium Essay

The Importance of Web Design

...Dictionary.com, digital technology is defined as “the branch of scientific or engineering knowledge that deals with the creation and practical use of digital or computerized devices, methods, systems, etc.” Web design is as important from daily shopping and web browsing to corporate businesses and branding. Imagine wanting to research a company’s case studies on building projects throughout neighboring counties. One may use a major search engine like Google, Bing, or Yahoo which will display a list of results based upon the input of the user and from there the user proceeds to the desired website. But how does a company get placed on a search result page? “When you include important company-related keywords into the html-based text, search engines such as Google and Bing are able to crawl your website easily, increasing your search engine placement and giving your website and firm more overall visibility” (Hendricks 2015). When analyzing, designing, and implementing a new website for a new or established company, many factors must be considered. Web design sticks close to the system development life cycle and is broken down into the requirement analysis, design and development, quality assurance, implementation, and maintenance and support. With all of these tasks at hand web design becomes crucial for the potential customer or client. Although all of the steps are critical to a successful website and the company it represents, the customer simply...

Words: 1177 - Pages: 5

Premium Essay

Quality Web Design

...Company Overview Quality Web Design (QWD) is a company that specializes in Websites and Web Design content for any type of business. Their mission is to help other businesses increase their revenue by providing them with top quality websites for their customers. In addition, they own over 250,000 of proprietary images, and graphical designs. These designs are customized for every industry and demographic. Their business process is quite simple. They have a server at the Company Headquarters, where they store all of their proprietary data (including images, scripts, templates, etc). They utilize a Microsoft Visual Studio Team Foundation Service (TFS) server to manage their content and the progress of the project. “Team Foundation is a set of tools and technologies that enable a team to collaborate and coordinate their efforts on building a product or completing a project. Team Foundation enhances team communication, tracks work status, supports team roles, enacts the team process, and integrates team tools.” (Microsoft.com (2011) Team Foundation Overview) In addition to the Team Foundation, they also utilize Visual Studio to code, and build the websites. These resources are accesses through different methods. Those methods include WAN connection, VPN connection through a remote office, and through the corporate office via LAN. They also have other services such as Outlook Web Access for E-mail that is accessed via the methods mentioned above. They have also created...

Words: 927 - Pages: 4

Premium Essay

Web Design Article

...turning to designers for help. Depending on the level of complexity, most designers agree websites can range from $500 to $25,000. Fortunately, there are skills you can learn independently to lower the cost. The following tips will guide you through the development process, preventing unnecessary spending on design and maintenance. Take Your Time: Objectives and Planning Planning is the key to any successful project. Before designing a website, always create a project charter to define the site objectives, scope, timeline, and budget. If a website is planned thoroughly, fewer complications will surface later in the development process. Know Your Material: Content Inventory A website without content is like a house without furniture. Carefully assess which content will be published on your site and determine what is still needed. Where larger corporations hire writers to produce quality material, a frugal entrepreneur can cut expenses by generating their own content. Be Creative: Making it Look Good No website would be complete without appealing graphics, a stylish layout, and original text. Most successful websites use simple layouts and add a touch of flair using design software. Search the internet for free tools to help you create animated graphics, logos, and interactive elements. Put It All Together: Construction and Testing Now that you have the framework and content, combine everything to create a finished website. Every page should be filled with the appropriate...

Words: 414 - Pages: 2

Free Essay

Quality Web Design

...Quality Web Design Company Overview Quality Web Design (QWD) is an organization that specializes in Web site and Web content design for all types of businesses. QWD's mission is to provide top quality Web design that will increase consumer generated revenue to QWD's customer Web sites. QWD's database contains over 250,000 proprietary images and graphical designs that will enhance most Web sites’ appeal to a target demographic. Hardware Vulnerability Single ISP controlled router linking service to the internet. There is a security vulnerability to cracking from the internet side of the router, thus possibly severing customers from the product and/or service. Assuming the ISP can control the router remotely, it is a backdoor into the router than can possibly be used by unauthorized users to change the router settings and deny internet service to the company. There is a very low likelihood that the router will be taken over by an unauthorized user. This is also a vulnerability in terms of access control, with no access to an ISP controlled router, Quality Web Design can not secure this router to limit unauthorized access. An edge router should have specific items addressed to ensure that it has as little vulnerability as possible. Here are a few points to consider when securing a router: • Make sure that the OS is patched and as up to date as possible • Protocols o use ingress and egress filtering o Screen ICMP traffic from the internal network • Disable...

Words: 718 - Pages: 3

Premium Essay

Web 240 Web Design Fundamentals

...WEB 240 WEB DESIGN FUNDAMENTALS To purchase this visit following link: http://www.activitymode.com/product/web-240-web-design-fundamentals/ Contact us at: SUPPORT@ACTIVITYMODE.COM WEB 240 WEB DESIGN FUNDAMENTALS WEB 240 ( Web Design Fundamentals ) Entire Class DQs, Assignments and Weekly Summaries WEB240 Week 1 DQs WEB240 Week 2 Individual Assignment-Comparative and Competitive Analysis of Websites Worksheet WEB240 Week 2 DQs WEB240 Week 2 summary WEB240 Week 2-Web Design and Development WEB240 Week 3 DQs WEB240 Week 3 Individual Assignment WEB240 Week 3 summary WEB240 Week 4 DQs WEB240 Week 4 Individual Assignment WEB240 Week 4- Interactive Features WEB240 Week 4 summary WEB240 Week 4 Website Evaluation Team B WEB240 Week 5 DQs WEB240 Week 5 Final Paper Kudler Fine Foods WEB240 Week 5 summary WEB 240 WEB DESIGN FUNDAMENTALS To purchase this visit following link: http://www.activitymode.com/product/web-240-web-design-fundamentals/ Contact us at: SUPPORT@ACTIVITYMODE.COM WEB 240 WEB DESIGN FUNDAMENTALS WEB 240 ( Web Design Fundamentals ) Entire Class DQs, Assignments and Weekly Summaries WEB240 Week 1 DQs WEB240 Week 2 Individual Assignment-Comparative and Competitive Analysis of Websites Worksheet WEB240 Week 2 DQs WEB240 Week 2 summary WEB240 Week 2-Web Design and Development WEB240 Week 3 DQs WEB240 Week 3 Individual Assignment WEB240 Week 3 summary WEB240 Week 4 DQs WEB240 Week 4 Individual Assignment WEB240 Week 4- Interactive...

Words: 516 - Pages: 3

Free Essay

Typography Web Design

...Ulyssa.Johnson1 Web Site Design Phase 5 Discussion Board Course: EM208-1303B-11 September 18, 2013 • You have been asked by a small business in your area to build a web site for their business (which they are willing to pay you for). Explain the approach you will take to planning (learning about their web site needs) through the design and coding of this web project. During phases 2, 3 and 4 we talked about how important color, typography and the navigation through a site. I spoke about how colors affect a person’s mood and emotions, how using certain typography styles can turn a customer away because it’s frustrating to read also, an excessive amount of navigation buttons could cause the visitor of the site to miss the actual meat and potatoes of said site. When meeting with a potential client to design a web site, I would keep this information in the back of my mind and pass it on to the client if needed. My first question would be how much are you willing to spend? I know that sounds a little harsh but, by their response I can determine if the client wants a site with bells, whistles, 3D graphics and videos to sell their products or a simple quality site that will sell their products too. Then, I would find out what message did the client want to convey on their site. For example, even though it is a small business, do they want to portray a big business establishment or just a local hometown business feel. I would ask which products and services they...

Words: 448 - Pages: 2

Premium Essay

Web Design Proposal

...------------------------------------------------- ------------------------------------------------- ------------------------------------------------- PROPOSAL PREPARED BY NOAM DESIGN GROUP FOR CLIENT NAME Submitted on 09/30/2009 by your name Email: youremail@yourcompanywebsite.com Offer is Valid until: 10/31/2009 Dear contact name, Thank you for your interest in working with Noam Design! Our team has reviewed your business requirements and has prepared the following detailed proposal. Given our experience and specific expertise in design, usability, programming, SEO, and marketing, we are confident that we can work with you to achieve your aims and goals. Please let me know if you have any questions. We look forward to working with you! ------------------------------------------------- TABLE OF CONTENTS Overview 4 Solutions, Scope of Work, and Deliverables 5-6 1. Preliminary Research 2. Strategic Planning 3. Interface Design - Graphic Design Work 4. Web application Front End Programming 5. Web application Back-end Development 6. Quality Assurance and Launch 7. SEO, Web Promotion, Statistics and Reporting Maintenance and Hosting 7 Fees – special recession rates 8 Payment plan and turn-around time 9 Noam Design Qualifications, responsibilities and commitment 10-11 1. Cutting Edge Technologies & Open Source Philosophy 2. Our experience 3. Our Clients 4. No outsourcing...

Words: 2413 - Pages: 10

Premium Essay

Web Design

...Private sector-New Look is a private retail store. It was founded by Tom Singh in 1969. Since then the company has rapidly expanded and now operates across a chain of over 1,000 stores internationally and a staff of over 30,000. When you first go to the website there are many links to take you where you want to go on the website. There is also a search bar so you can go directly to the item you want to look at. The website promotes the business as it shows free deliveries and returns. It is tidy, organized and offers lots of information. It uses plain colours and still pictures but the pictures used show of the clothes the shop is selling and the pictures are still so you can have a good look at what the models are wearing. You can also scroll down the page and see what the clothing looks like on. At the bottom of the page there is a hyperlink to their catalogue. They also have social media links to their Facebook and Twitter with an option to share their website, this is good for marketing and promoting the business. The links at the top of the page take you to different places within the website and once you’ve picked an item there is an option to choose your size then either add it to your basket or save it to your wish list for a later date, this is convenient for the business and the consumers as it keeps the customers on the website for longer and the customer can click on many items then decide later on what they want to buy. Voluntary sector-RSPCA The RSPCA...

Words: 862 - Pages: 4

Free Essay

Web Design

...e eBook Collection Web Development and Design Foundations with XHTML 5e Ch02 This is a Protected PDF document. Please enter your user name and password to unlock the text. User Name: Password: Unlock Remember my user name and password. If you are experiencing problems unlocking this document or you have questions regarding Protectedpdf files please contact a Technical Support representative: In the United States: 1-877-832-4867 In Canada: 1-800-859-3682 Outside the U.S. and Canada: 1-602-387-2222 Email: technicalsupport@apollogrp.edu. kerrankin kasvoihin hyvassa saattanut tahtoivat jumalani riemuitsevat suomessa tuleeko vaalitapa syihin joka edessaan arvaa todistusta kirjaa menkaa osa nukkumaan suunnilleen kuulua noudatti pelissa menevan tunsivat aro heimojen lahtemaan sellaisenaansurmata muutamia siina ihmisena huudot katoavat ennustaa sydamesta kauden toimittaa kaksikymmenvuotiaat nauttia perusteella lesken pysyi jatka om presidenttina paamiehet valtasivat tielta minakin luoja toisille kutsuu helpompi kolmannes suosittu kadessani kadessani kaytetty minkalaisia huoneessa olekin yrittivat tahteeksi lansipuolellavahan lyodaan tulevaa teko maininnut ominaisuudet yhteysuhreja tyhmat vahintaankin jarkeva kahleet tilannetta talossaan vaaleja auttamaan mittasi E isieni sarjan selanne ulottuvilta tieteellisestirikkaat lahestulkoonRsotima heimolla CHA lahjansa sisalla levyinen sanasta havittaa vasemmistonkatsotaan meille etsimaan alkutervehdys vahvasti oikeassaP kuka...

Words: 13100 - Pages: 53

Free Essay

Principles of Effective Web Design

...utility, not the visual design, determine the success or failure of a web-site. Since the visitor of the page is the only person who clicks the mouse and therefore decides everything, user-centric design has become a standard approach for successful and profit-oriented web design. After all, if users can’t use a feature, it might as well not exist. In order to use the principles properly we first need to understand how users interact with web-sites, how they think and what are the basic patterns of users’ behavior. How do users think? Basically, users’ habits on the Web aren’t that different from customers’ habits in a store. Visitors glance at each new page, scan some of the text, and click on the first link that catches their interest or vaguely resembles the thing they’re looking for. In fact, there are large parts of the page they don’t even look at. Most users search for something interesting (or useful) and clickable; as soon as some promising candidates are found, users click. If the new page doesn’t meet users’ expectations, the Back button is clicked and the search process is continued. Users appreciate quality and credibility. If a page provides users with high-quality content, they are willing to compromise the content with advertisements and the design of the site. This is the reason why not-that-well-designed web-sites with high-quality content gain a lot of traffic over years. Content is more important than the design which supports it. ...

Words: 2915 - Pages: 12

Free Essay

Web Design Plan

...A – Design Brief Objective * To create a website that allows the client to compose a resume containing information about their education, work experience, references, awards, interests, activities, hobbies in order to be presented to different employers at the moment of submitting job applications. * To allow employers to contact client trough the “Contact Me” page Content * Personal details * Education and qualifications * Work Experience * Contact me Application For the design and development of the Resume website we will use the Web Development Program - Macromedia Dreamweaver MX 2004, which meets the expectations to create a BEAUTIFUL website. For testing our website we will use a number of web browsers including Mozilla Firefox, Google Chrome and Internet Explorer. B – Site Structure C – Story Board D - Client questionary 1. What is the message that your website should bring across? 2. Do you have any existing website? If yes, please specify the URL 3. Do you require a website redesign or a complete new website? 4. Do you require a website that you can update yourself? 5. How often would you be making updates to the website? 6. Describe your prospective customers or visitors. 7. Do you have any color preference for the website? 8. Please mention at least 2 websites that you like. Please also mention the reason why you like them. 9. Do you have any specific budget for this project? 10. Do you have a time frame...

Words: 265 - Pages: 2