Free Essay

Web 236

In:

Submitted By williamsel30
Words 2543
Pages 11
Linux+ Study guide
Chapter 1
Shell Facts
The Linux shell is the Command Line Interface (CLI) or Text User Interface (TUI) that administrators use to control a Linux operating system. Users and programs use the shell to send commands to the system. A shell might be opened inside a Graphical User Interface (GUI), or might be the sole method used to run the computer.
Although most Linux distributions now include a graphical interface, and many administration tools have been converted to a graphical format, many tasks are best performed from the command prompt. In addition, while graphical elements vary between distributions, shell commands are more likely to be consistent between distributions.
The following table describes many common shell types: Shell Type | Description | bash | The Bourne-again shell (bash) is the standard shell used in most Linux computers. It uses commands similar to a UNIX shell. Bash includes features such as: * Command completion when pressing the tab key * Command history * Improved arithmetic functions | sh | The Bourne shell is an earlier version of the Bash shell, and is similar in many ways. Sh is the original shell created by Steve Bourne. | ksh | The Korn shell was developed by David Korn. Ksh has scripting features not found in bash. | csh | The C-shell uses syntax similar to syntax used in the C programming language. | tcsh | The tcsh shell is an improved version of csh. It offers command line editing and completion features not available with csh. |
Despite their differences, all shells share some common characteristics: * A Linux system can use multiple shells at the same time. * A list of shells is stored in the /etc/shells file. * All shells are interfaces with the kernel, separate and distinct from it. * Shells are run both interactively by end users and automatically by the computer's processes. * Shells can run within one another either interactively when a user starts a second shell from the first shell's command line, or automatically by scripts or programs. * Shells use configuration files to establish their operating environments.

Shell Commands Introduction
The Linux shell is the command line interface (CLI) or text user interface (TUI) that administrators use to control a Linux computer. While many Linux distributions offer a Graphical User Interface (GUI) that can perform the same tasks, the Linux+ exam tests only for command line tasks.
Keep in mind the following tips for working in the shell: * The tilde symbol (~) in the prompt indicates the present working directory is the home directory of the current user. * The command path is the set of directories in which Linux searches to find executable files for the commands typed into the shell prompt: * The path does not include the present working directory. * To see the path, type echo $PATH. * To add a directory to a path, type PATH=$PATH:directory_path. * To execute programs: * Type the executable name in the present working directory if the program is in the command path. * Type ./filename to run an executable in the present working directory. (./ indicates the present working directory.) * Type the full pathname to the file to run an executable from anywhere. * File names and paths are case-sensitive. * Type the beginning of the name, then press Tab to complete a file, command, or directory name. (Press Tab twice if there is more than one possible file, command, or directory name.) * Press the up arrow at the command prompt to print the last command. Press it again to scroll through all previous commands.
The following table describes several common commands used from the shell. Use... | To... | pwd | Show the present working directory. | whoami | Display the current username. | uname | Print system information. Be aware of the following uname options: * -a prints all system information. * -o prints the operating system. * -p prints the processor's architecture type. | su | Switch users in the shell prompt. Be aware of the following su options: * su -l user_name switches to the specified user in a login shell. * su user_name (without the dash, but with the username) switches to the user. * su - user_name (with the dash and username) switches to the user and loads the user's environmental variables. * su - (with the dash, but no username) switches to the root user and loads the root user's environmental variables. * The root user account is the Linux system superuser. * The root user can perform any task; some utilities do not work if the administrator is not logged in as the root user. * su (no dash or username) switches to the root user and but does not load the root user's environmental variables. Linux uses different prompt symbols to indicate the current user: * # indicates the current user is the root user. * $ indicates the current user is a normal user.Note: su requires the password of the user except when switching from root to a normal user. | exit | To exit the login shell or back to the original user after using the su command. | exec | Execute an executable and to replace the shell with the new process created by the executable file. | cd | Change directories. For example when the /usr directory is the current directory: * cd bin changes to the bin directory in the current directory. * cd /usr/bin changes to the bin directory from anywhere in the file system. | ls | Show names of files and directories in the current directory. The ls command commonly uses the following options: * -a shows all files and directories, including hidden files. * -l shows information about files including size, permissions, owner, and modified date. * -d displays only directories. * -s sorts files by size. * -X sorts by extension.Many distributions have a color scheme for different file types: * Directories are blue. * Text files are white. * Links are cyan. * Image files are magenta. * Compressed files are red. | history | See all commands in the history queue. The -c option clears the history list.
Note: History command queues are separate for each user. A command typed as one user cannot be used after using the su command to switch to another user. | clear | Clear the shell screen. | chsh | Change the default shell. Be aware of the chsh options: * -s changes to a different installed shell. The command prompts for a password. * -l lists all installed shells.For example, chsh -s /bin/ksh changes the default shell for the user to the Korn shell if it is installed on the computer |

Shell Configuration Facts
Shell configuration files are scripts that execute when a shell starts. The shell type determines which shell configuration files are executed. Shell types include: * Login shells run when the system starts and is only using the Text User Interface (TUI) as the user interface. * Non-login shells run when the system boots into a Graphical User Interface (GUI) and a user starts a terminal session. The following are the names of the files used when the shell starts: Configuration File | Description | Used by shell type | ~/.bashrc | ~/.bashrc stores shell preferences for individual users. | non-login
(login on some distributions) | /etc/profile | /etc/profile stores system-wide configuration commands and is used primarily to set environment variables. | login | ~/.bash_profile | ~/.bash_profile stores shell preferences for individual users. | login | ~/.bash_login | ~/.bash_login stores commands that execute when a user logs in. | login | ~/.profile | ~/.profile stores configuration preferences similar to /etc/profile, but for individual users. | login | ~/.bash_logout | ~/.bash_logout stores commands that execute when a user logs out. | login |
Be aware of the following: * Login shells execute the configuration scripts they use in the following order: 1. /etc/profile 2. ~/.bash_profile (If this file is found, the shell does not look for additional configuration script files) 3. ~/.bash_login (If this file is found, the shell does not look for additional configuration script files) 4. ~/.profile (This file only executes in the absence of the preceding two) * The su -l command switches to a user into a login shell; however, without the -l option, a non-login shell is started.

Help Facts
Help pages are part of every Linux distribution. They provide information about options and uses for the nearly 1000 commands that are available on a Linux computer. The following table describes help options available for a Linux system. Option | Description | Examples | Man page | A manual (man) page is text-based help file for a specific command stored on the computer. A man page shows the command's syntax, options, and related files and commands. Be aware of the following details: * The man command opens the corresponding file in the command prompt window using the default paging program. * Man pages are typically stored in the /usr/man or /usr/share/man directory. Subdirectories store man pages for different types of commands or languages. * The MANPATH environment variable can be altered to specify a different location for man pages. * Some distributions set this variable using the /etc/man.config script, with corresponding scripts in each user's home directory to allow variation for individual users. * Press Q to exit the man page. * Use the -k option to search the man pages for a command. | man userdel shows the man pages for the userdel command. man man shows the man pages for the man command. man -k user lists all the commands with user in the command name or description. | Info pages | For GNU software, info pages are the primary documentation source. Info pages use hypertext links to navigate the pages. Use the following keys to navigate through an info page: * h shows a navigation help screen. * Tab moves to the next hyperlink. * Home moves to the beginning of a node. * Enter follows the selected hyperlink. * u moves up a node level. * Space moves to the next screen. * Del moves to the previous screen. * q exits an info page. | info mkfifo opens the info page for the mkfifo command. info man opens the info page for the man command. | On-screen help | Many commands include on-screen help as one of the options for the command. In most cases, help displays an abbreviated list that shows of the command syntax and available options with brief descriptions. If the command is typed incorrectly, many commands display the help information automatically.To view the help available for a command, type: * command --help * command -hAlthough some commands support both switches, the --help switch is more common. If necessary, use the more command to scroll through the on-screen help. | jobs --help for help with the jobs command. echo -h for help with the echo command. | whatis database | The whatis database is an index of the man pages on the system. Use the whatis database to find man pages that contain a specific word (i.e., search string). * Run /usr/sbin/makewhatis to create the whatis database. The database must be created first. * Use makewhatis -u to update the database after changes have been made to the man pages. The following commands will return a list of the man pages containing the search string in the whatis database: * apropos searchstring * whatis searchstring | makewhatis -u updates the database. apropos grep returns all man pages containing the term grep. |

Environment Variable Facts
An environment variable is a setting that the operating system or programs working in the operating system access. Environment variables make up the user environment. Be aware of the following details: * The standard for writing variables names (called variable identifiers) is to use upper case (e.g., SHELL and EUID) * Changing environmental variables from the defaults result in user-defined variables. * A user-defined variable applies only to the current session; export the user-defined variables so they apply to child sessions. * Add user-defined variables to the shell configuration files to make them persistent.
The table below lists common environment variables: Variable | Description | BASH | The location of the bash executable file | SHELL | The user's login shell. | CPU | The type of CPU. | DISPLAY | Location where X Windows output goes. | ENV | The location of the configuration file for the current shell. | EUID | The ID number of the current user. | HISTFILE | The filename where past commands are stored. | HISTSIZE | The number of past commands that HISTFILE stores for the current session. | HISTFILESIZE | The number of past commands that HISTFILE stores for the multiple sessions. | HOME | The absolute path of the user's home directory. | HOST | The name of the computer. | HOSTNAME | HOSTNAME is identical to HOST, but used on certain distributions. | INFODIR | The path to the computer's information pages. | LOGNAME | The user name of the current user. | MAIL | The path to the current user's mailbox file. | MANPATH | The path to the computer's man pages. | OLDPWD | The path of the directory the user was in prior to the current path. | OSTYPE | The type of operating system. Usually this is Linux. | PATH | The directory prefixes used to search for programs and files. * Use a colon to separate entries in the PATH variable. * Do not include a period (.) in the PATH variable. A period indicates that the working directory is in the path, and this poses a security risk. | PS1 | The characters the shell uses to indicate normal user ($), root user (#) and similar items. | PWD | The path of the current working directory. | LANG | The language the operating system uses. | PAGER | Used by the man command to specify the program in which to display man pages. |
The table below lists the most common environment variable commands: Use... | To... | Examples | echo $variable | View the variable's value. | echo $SHELL displays the current shell's path. | env | Display the values for environment variables applied to child sessions. | | set | Set shell environment variables. Without options, set displays the set environment variables for the system. | | unset variable | Remove an environment variable. | unset HOMEDIR removes the HOMEDIR variable. | VARIABLE=value | Create a user-defined environment variable.
Note: To append information to an environment variable, put the current variable in the command. For example, PATH=$PATH:/bin/additionalpath. | HOMEDIR=/projects gives the HOMEDIR variable a value of /projects. | export variable | Export a user-defined variable to make it available to child sessions. | export HOMEDIR makes the HOMEDIR user-defined variable available to child sessions.
PATH=$PATH:/bin/special ; export PATH appends a directory to PATH and immediately exports the variable. |

Alias Facts
An alias is a custom command that performs a specific action. Most distributions have aliases that are invoked at startup; however, an alias can be invoked from the shell. Be aware of the following: * Aliases defined with the alias command are not persistent across reboots. * Add the alias to /etc/profile or home/user/.bashrc to make them persistent across reboots.
The following table describes the commands that create and remove aliases. Use... | To... | Example | alias | Display the currently defined aliases on the system. | | alias name | Create a custom command that: * Adds additional functionality to an existing command. * Performs multiple functions.Note: When creating the alias, encapsulate the command(s) with quotation marks or apostrophes. | alias ls='ls --ignore=*.elf' prevents the ls command from displaying .elf files even if ls -a is used. alias securebackup='cp ./*.* /dev/st0/*.*;shred -fuvz ./*' creates a command that copies all files to the storage tape, then shreds the original files. alias forcelogout="killall /usr/bin/Xorg" creates a shortcut kills all Xserver processes. | unalias name | Remove an alias. | unalias ls removes all aliases specified for the ls command and places it back in its original state. unalias forcelogout deletes the forcelogout alias if it exists. |

Similar Documents

Free Essay

Web 236

...Berry’s Bug Blaster Web Evaluation Insert student name here WEB/236 Web Design I University of Phoenix Insert name of professor Insert date due Berry’s Bug Blaster Web Evaluation The website which was developed for Berry’s Bug Blaster’s is intended to be an informative site for the company’s pest control services. The site contains the up-to-date contact information and features all of the current advertised specials and promotions. Also included is a detailed list of the pests the company handles as well as the current methods used in all services. The intended audience is directed at customers who are currently dealing with pests, or have dealt with pest control problems in the past. Berry’s attempts to attract customers who are in need of their specialty services by offering promotional pricing and a detailed step by step process in which they will make all potential customers place of residence pest free. [Is this regional?] Berry’s Bug Blasters’ website has several goals: 1. Bring in new customers by having a web presence when pest control companies are searched using search engines 2. Be easily found when previous customers need assistance with a new issue 3. Inform customers of available services 4. Provide customers with contact and address information as well as a way to contact the company directly through the website. [Goals End here .. the following items are evaluation points. This belongs in strengths and weaknesses] 5. The current...

Words: 2686 - Pages: 11

Free Essay

Web 236 Learning Consultant - Tutorialrank.Com

...WEB 236 Entire Course (UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 5 Times, Rating: A+ WEB 236 Week 1 DQS part 1/3 WEB 236 Week 1 DQS part 2/3 WEB 236 Week 1 DQS part 3/3 WEB 236 Week 1 One Weekly Summary WEB 236 Week 2 DQS part 1/2 WEB 236 Week 2 DQS part 2/2 WEB 236 Week 2 Two Weekly Summary WEB 236 Week 2 Individual Assignment: Website Purpose and Architecture Plan- please add own images WEB 236 Week 3 DQS part 1/2 WEB 236 Week 3 DQS part 2/2 WEB 236 Week 3 Individual Assignment: Website Navigation and Development Plan- Please Add Own Images WEB 236 Week 4 Individual Assignment: Website Content Plan- Please Add Own Images WEB 236 Week 4 Learning Team Assignment: Research and Drafting: Develop Recommendations for Re-Design WEB 236 Week 4 DQS WEB 236 Week 4 Four Weekly Summary WEB 236 Week 5 Learning Team Assignment: Website Evaluation Paper and Prototype for Re-Design ----------------------------------------------------- WEB 236 Week 1 DQS part 1/3(UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 0 Times, Rating: No Rating WEB 236 Week 1 DQS part 1/3 ------------------------------------------------- WEB 236 Week 1 DQS part 2/3(UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 1 Times, Rating: A+ WEB 236 Week 1 DQS part 2/3 ----------------------------------------------- WEB 236 Week 1 DQS part 3/3(UOP) For more course tutorials visit www.tutorialrank...

Words: 297 - Pages: 2

Free Essay

Web 236 Learning Consultant / Tutorialrank.Com

...WEB 236 Entire Course (UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 5 Times, Rating: A+ WEB 236 Week 1 DQS part 1/3 WEB 236 Week 1 DQS part 2/3 WEB 236 Week 1 DQS part 3/3 WEB 236 Week 1 One Weekly Summary WEB 236 Week 2 DQS part 1/2 WEB 236 Week 2 DQS part 2/2 WEB 236 Week 2 Two Weekly Summary WEB 236 Week 2 Individual Assignment: Website Purpose and Architecture Plan- please add own images WEB 236 Week 3 DQS part 1/2 WEB 236 Week 3 DQS part 2/2 WEB 236 Week 3 Individual Assignment: Website Navigation and Development Plan- Please Add Own Images WEB 236 Week 4 Individual Assignment: Website Content Plan- Please Add Own Images WEB 236 Week 4 Learning Team Assignment: Research and Drafting: Develop Recommendations for Re-Design WEB 236 Week 4 DQS WEB 236 Week 4 Four Weekly Summary WEB 236 Week 5 Learning Team Assignment: Website Evaluation Paper and Prototype for Re-Design --------------------------------------------------------------------------------------- WEB 236 Week 1 DQS part 1/3(UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 0 Times, Rating: No Rating WEB 236 Week 1 DQS part 1/3 ------------------------------------------------------------------------------------------------------------------------ WEB 236 Week 1 DQS part 2/3(UOP) For more course tutorials visit www.tutorialrank.com Tutorial Purchased: 1 Times, Rating: A+ WEB 236 Week 1 DQS part 2/3 ---------------------...

Words: 906 - Pages: 4

Premium Essay

Web 236

...| Instructor PoliciesWEB236Web Design | Facilitator Information                                                                                                      Ryan Napalornapalo@email.phoenix.edu (University of Phoenix)rnappy@gmail.com (Personal)662-322-8810 (CST)Facilitator AvailabilityI am available from 9 a.m.-9 p.m. Central Time on most days, but I attempt to reserve Sunday for my family. During the week, I am online most of the time during that 9 a.m.-9 p.m. time frame. On Saturdays, I tend to be online in the morning only. If these times are not convenient for you, please let me know. I will be happy to accommodate your schedule, if possible. I provide you with these times to make it easier to communicate with me, and not to limit our contact. I want you to know that, should you need to contact me outside these time frames, you should not hesitate to do so. For emergencies, when you are not able to gain access to messages on the Online Learning System (OLS), please send a message to my personal email address. In the event a third party needs to contact me, please direct them to my contact information listed under "facilitator information." No third party should use your login credentials to gain access to the classroom. | Late Assignments                                                                                                             Late assignments receive a10% deduction for each day they are late if assignments are not posted by 11:59 p...

Words: 763 - Pages: 4

Free Essay

Web 236

...When creating a website the developer needs to keep in mind the user. Making sure that the users finds the website useful and user friendly. The website purpose is for Niya to increase sales and generate new clients. The site will need a shockwave flash format there is another component that it needs in order to play which internet explorer already has. Using shockwave flash will allow use on smaller devices because flash are small. Plug ins that will be needed for the website will be like adobe flash player. Adobe flash uses runtime which allows billions of people to browsers and OS version with effortless. It also improves the graphics and creates high performance on smaller screens. Adobe will ensure that it fits all devices and clear. The graphic will be Adobe Illustrator using bitmap, JPG and PNG file format. Bitmap are made of rows of tiny dots called pixels because they are so small they blend with the monitor. Bitmaps with increase in size the more you work with them. JPG is one of the most common one used to format or display photographs on the site. Since PNG is a newer version which will provide “254 levels of transparency (GIF supports only one). Allows more control over image brightness and allows more than 48 bits per pixel. (GIF supports 8 bits for 256 colors).Supports progressive rendering, as interlaced GIFs do. Compresses better than a GIF” ( webbuilderscafe).the contents will be pictures of the toys and brief background on Niya and her company. There will...

Words: 387 - Pages: 2

Premium Essay

Web 236 Team

...screen. While the rest of the site is easy to use and the colors work well together the information within the site is stale and dated. Another aspect that needs to be addressed is the information contained within each link. In looking at the links, the home link would be the one that needs the least amount of change. It should be friendly and have links to social networks. It also needs a search option so customers can easily find specific information. Another change that is needed is to add a link to weekly specials that run in the newspapers and neighborhood flyers. This should be updated within 24 hours of an ad running and contain a PDF or downloadable flyer. These should contain coupons that are easily printable by the customer. Web site sections The meat and seafood section on the current site really has no useful information other than some basic information of what each store carries. The new site...

Words: 2332 - Pages: 10

Premium Essay

Week Nine It/236 Web Site Analysis

...The Website site www.espn.com is an overall well balanced with great use of web graphic design. The last of my knowledge this website redesigned their web site in the early part of 2009 from a source, “Mike Industries” by Dream host. I am going to point out a lot of the positive aspects of this web site along with what I believe could make this site able to take the step to the next level in today’s industry. I believe overall the positive’s over look some of the negatives that this site has and that unless you are an expert in web design you would never know the flaws of this site. The overall cleanliness of this site is great and the have great use of CSS. When you just glance at this site you can tell that they have spent years designing and redesigning to make sure that it is close to perfect. When you look at the site’s homepage you can tell that they use CSS because all of the main topics or heading stand out from everything else in bigger, bolder and in different colors. Also, the color design they use is good, they use the colors that are of their nature which makes up their unique distinction from all of the other sports web pages. The colors help separate the page just like the titles and headings are bold to separate the main topics. This is an overall good use of CSS. They also use good design of tables, when you look at the bottom half of the web site you see their use of tables, helping divide important highlights and facts from around the world in each...

Words: 1032 - Pages: 5

Free Essay

It 236 Complete Class

...IT 236 COMPLETE CLASS To purchase this visit here: http://www.activitymode.com/product/it-236-complete-class/ Contact us at: SUPPORT@ACTIVITYMODE.COM IT 236 COMPLETE CLASS IT 236 Week 1 CheckPoint Web Design Terminology- Appendix B IT 236 Week 1 DQ 1 and DQ 2 IT 236 Week 2 Assignment Site Structure IT 236 Week 2 CheckPoint Web Site Plan Part 1 IT 236 Week 3 DQ 1 and DQ 2 IT 236 Week 3 CheckPoint Page Design Proposal IT 236 Week 3 Exercise Toolwire® Lab Create a Web Page IT 236 Week 4 CheckPoint Navigation IT 236 Week 4 Assignment Site Structure IT 236 Week 5 CheckPoint Insert Graphics IT 236 Week 5 DQ 1 and DQ 2 IT 236 Week 6 CheckPoint Copyright Implications IT 236 Week 7 DQ 1 and DQ 2 IT 236 Week 7 CheckPoint Graphic Design IT 236 Week 9 Capstone DQ IT 236 Week 9 Final Project Web Site Analysis Activity mode aims to provide quality study notes and tutorials to the students of IT 236 COMPLETE CLASS in order to ace their studies. IT 236 COMPLETE CLASS To purchase this visit here: http://www.activitymode.com/product/it-236-complete-class/ Contact us at: SUPPORT@ACTIVITYMODE.COM IT 236 COMPLETE CLASS IT 236 Week 1 CheckPoint Web Design Terminology- Appendix B IT 236 Week 1 DQ 1 and DQ 2 IT 236 Week 2 Assignment Site Structure IT 236 Week 2 CheckPoint Web Site Plan Part 1 IT 236 Week 3 DQ 1 and DQ 2 IT 236 Week 3 CheckPoint Page Design Proposal IT 236 Week 3 Exercise Toolwire® Lab Create a Web Page IT 236 Week 4 CheckPoint Navigation IT...

Words: 550 - Pages: 3

Free Essay

Graphic Design

...Project Proposal: Graphic Design IT/236 Introduction to Web Design I May 20th 2015 Professor Frank Futyma Project Proposal: Graphic Design My website, LVsplashpads.com, will be incorporating a few different plug-ins and multimedia features. When the site is first introduced, I anticipate to only having pictures from splash pads from around the city, however, I would eventually like to have live streams available of specific splash pads if possible. I would like to set up a feature where user’s of the website may upload small video’s to the website and they can be broadcast to everyone who logs in, so they can see the conditions of a specific splash pad as well as how busy it may be on that particular day. I would like to include small videos that I will personally upload to the site, showing a brief walk through each park for all users to view when they would like. Graphics will most definitely make up a majority of my site, as it will give the user a visual of the place that they would like to visit. I will have a few scattered pictures of random splash pads incorporated on the main page, however, I will have a specific page on the site where I will put all other splash pad pictures as well as give users a chance to upload their own! I know it is out of the spectrum of things that I could include now but having a live feed on my page is something that I would like to have and having the ability to load graphics onto this live feed would be very interesting in my...

Words: 530 - Pages: 3

Premium Essay

Checkpoint Navigation

...Checkpoint navigation It 236 Checkpoint navigation Web site navigation is an important function of a web site; some would argue that navigation is the most important. Why is a web site’s navigation so important? Many factors play a role in the importance of web site navigation. Most if not all web sites include more than one page, different content, or products, and interactive features. In order to access all that a web site has to offer the visitor will want to effortlessly find their way to what they may be looking for. Usability should be simple, a clear pathway that leads to a page as well as back to where started. Navigation menus are common at the top of the page in a horizontal list or on the left side with a vertical list going down. These two places are the most common because this is what the visitor is use to. Familiarity will make for a more pleasant experience. Simplified navigation allows the visitor to better retain the information on the site. Keeping the page options to a smaller number will help insure information is not overlooked. Concise navigation through fewer clicks will also give better results with search engines. To produce the most satisfying experience the visitor should be aware of where they are, where they are going, where they have been, how to get somewhere else, and how to get back to any of the previous mentioned. When labeling the navigation links do so by using familiar terms such as about, contact, services. Although there are...

Words: 402 - Pages: 2

Premium Essay

Effective Site Navigation

...Effective Site Navigation Jenny Marrero WEB/236 March 26, 2012 Mary Paquet Effective Site Navigation A Web page should provide a visitor with clear, easy-to-find information. This is why the navigation of a site is very important. By following the best practices of navigation, designers should have no troubles creating a site that is easy to use for any type of visitor. J & A Beagles, a new company looking for fresh ideas should consider these practices for navigation when creating their Web site so each page has maximum usability for their users. Navigation Bars Thinking too much while visiting a Web site concerning navigation usually ends in frustration. The worst case scenario involves the visitor leaving the site altogether. A site should provide extremely easy navigation from one page to the next and also allow a visitor to find the Home page or previously viewed pages with little to no effort. If the navigation on a site is easy to use, a person who knows nothing about surfing the Web can navigate through the site with no help. One way to make navigation simple is by using a navigation bar. Usually a site provides a horizontal navigation bar, but when a site contains a large amount of content, a vertical bar is provided as well. Bath & Body Works uses both on its site (Figure 1.1, Figure 1.2) Figure 1.1 Figure 1.2 These six “buttons” allow visitors to find exactly what they need. By hovering over the first three buttons (Category, Fragrance, or...

Words: 774 - Pages: 4

Premium Essay

Week 9 It236 Web Site Analysis

...Web Site Analysis May 27, 2012 IT/236 Web Design When it comes to building a web site, a designer needs to think about many different things before they can begin to build the web site. Audience being number one, navigation, and overall look are three key things a designer should focus on when designing a site. After researching the Market Watch (Market Watch, 2012) web site there are many things I would recommend for change to this site, regarding the three key points. So much work needs to go into the design phase of a site, when you just put things on a site you will get something like what is seen on Market Watch’s site. When I began to look over this website, I did start to think about the stock broker and how busy and fast-paced their lives are and began to associate this page with them. However, the designers also have to think about the novice stock brokers and personal finance users as well who may not be able to grasp this type of page. Having so much information for the audience to view is a little overwhelming, it needs to be divided up or spaced out a little differently. Many people in the world today try to manage their own finances and read the stock market themselves; going to the internet for help is where they begin. If users cannot accurately and easily read a site, they will look elsewhere for the information. Navigation on a web site should be simple and clear. If you enter a web site and it is unclear about where you are supposed to go then...

Words: 795 - Pages: 4

Premium Essay

Riordan Website Redesign Project

...Riordan Website Redesign Project Learning Team A Web 236 10/3/2011 Ryan Napalo Learning Team Virtual Organization Website The project team is assembled to study the Riordan Manufacturing website and find solutions to help Riordan modernize their web page. The project team will evaluate both the Internet and Intranet web design and find solutions to provide easier navigation for the customer, fast loading web pages, and relevant information for both the internal and external customer. Background Riordan Manufacturing, Inc. is an industry leader in the field of plastic injection molding. Facilities are located in San Jose, California, Albany, Georgia, Pontiac, Michigan, Hangzhou, and China. Currently Riordan has a public Internet site along with their company’s intranet page for internal employees. Project Goal Learning Team A’s goal is to organize the information and separate page tabs into the main page, company history, contact information, awards, product information, and purchasing details. The main page will contain brief information on the company and what they do. Cleaning up the home page will make it easy for customers to quickly find the information they are looking for. The product catalog will be available online. Additionally, online customers may request a hard copy using a link or download a copy of the catalog, photos of products offered will be displayed on a separate page, pricing detail sheet will be available as part of the product catalog, information...

Words: 1407 - Pages: 6

Premium Essay

Website Plan

...Website Design Plan Jorge Lopez Web Design I/WEB 236 February 11, 2013 Christine Gysin Abstract This paper will present some of the best web design practices for development and design foundations with XHTML. The continuous web technology improvement has made it more efficient for web developers to design a website for e-commerce and social networking to reach a specific target audience. Introduction There are several elements to take into consideration when designing a website, applying best practices to the web design are very important. The website organization is largely determined by the website architecture with three common types of web organization, which will be presented in this paper. The designer must concentrate on the target audience for the website and constantly take into account how the target audience will view the website. The designer should adhere to the recommendations of the World Wide Web Consortium (W3C) and run the web site’s Web addresses via their appropriate assessment tools to be certain that the highest possible standard of accessibility is provided. The content in addition to structure of the website ought to be meticulously designed for simplicity use and provide concise information to the visitor. The overall presentation of the website is required to be eye appealing without overwhelming graphics and sounds, although graphics help make webpages compelling and provide the user interactivity, the design...

Words: 1872 - Pages: 8

Free Essay

Site Structure

...Copyright Implications Paper Your name IT 236 9/9/2015   A copyright oversees design on websites divide from the substance in the site. A copyright of design deals with logos, graphics, as well as colors that you will find on a site. It will defend you from unlawful use of your images and colors by other people. This will forbid the copy of any of your designs. When building a new website is best to use all original designs to guarantee that you are not breaking in copyright laws. If you plan to use online photos or graphics use free stock photos or make sure you have written permission to exploit the designs in your own websites. It is important to know just what constitutes copyright infringement or violation. This can include printing a webpage, using a graphic or color scheme off of a website, copying the html or code from the page, or downloading it to your hard drive. If you utilize any of this for personal use, most designers wouldn’t have an issue with that. You should also understand that even though a site may not have a copyright notice, they are still protected by copyright laws and it is important to adhere by those laws. Adding a watermark or using copyright software to implant protection into an image or design are two ways you can keep your own designs confined. Use of other’s work online without consent is illegal. You should always perform integrity when dealing with these issues. The best way to guarantee you are doing the right thing is to...

Words: 452 - Pages: 2