DESIGNING AND DEVELOPING A WEBSITE MARKING SCHEME

Size: px
Start display at page:

Download "DESIGNING AND DEVELOPING A WEBSITE MARKING SCHEME"

Transcription

1 DESIGNING AND DEVELOPING A WEBSITE 7 th NOVEMBER 01 MARKING SCHEME This Marking Scheme has been prepared as a guide only to markers. This is not a set of model answers, nor is the Marking Scheme exclusive, for there will frequently be alternative responses which will provide a valid answer. Unless a question specifies that an answer be produced in a particular form, then an answer that is correct, factually or in practical terms, must be given the available marks. If there is doubt as to the correctness of an answer the relevant NCC Education materials and associated module textbook should be the first authority. Throughout the question, please credit any valid alternative point. Notice to Markers Where markers award half marks in any part of a question they should ensure that the total mark recorded for a task is rounded up to a whole mark.

2 CANDIDATES MUST ATTEMPT ALL QUESTIONS QUESTION 1 a) i) What are WC standards? 1 Specifications or descriptions of web technologies (1 mark). ii) Provide an example of a WC standard? 1 XHTML 1.0 Strict/CSS.1 (1 mark) iii) When developing websites why is it important to use web standards? The standards aim to provide web technologies that support the greatest number of web users. If we follow web standards we can be confident our websites will be accessible to as many users as possible ( marks). b) Computers on the World Wide Web can be classified as clients or servers. Explain the different roles of the client and server computers. Clients connect to web servers, make requests for web pages and display web pages for web users (1 mark). Web servers store web pages and send web pages to the client (1 mark). c) Name two types of disability that would affect someone s use of a website. For each disability describe how the use of the web would be affected. Any two of the following, 1 mark for identifying a relevant disability and 1 mark for describing the impact on the use of the web: 4 Visual Disability: People that are blind or have limited vision. Can t see web pages may have to magnify the page contents or use a screen reader Motor: People that have limited or no use of hands. Struggle to use conventional input devices that require fine motor control, struggle to select and click on navigation options. Auditory:People that are deaf or hard of hearing. Struggle to understand audio and video content on the web Cognitive: Suffers may struggle to use websites with complex language, navigation, or interaction processes Total 10 Page of 1

3 QUESTION a) Look at the following XHTML document. It is viewable in a web browser but validating the page reveals several errors. 4 <!DOCTYPE html PUBLIC "-//WC//DTD XHTML 1.0 Strict//EN" " <html xmlns=" <head> </head> <body> <title>chocolate</title> <h1>chocolate</h1> <p>made from the beans of the cacao tree, chocolate is a popular food that is eaten in many forms and in many parts of the world. It has a long and interesting history stretching back thousands of years. Much of the chocolate consumed these days is sweetened chocolate that comes in a number of varieties. <ul> </p> <li><a href="milk_choc.html">milk</a></li> <li><a href=dark_choc.html>dark</a></li> <li><a href="white_choc.html">white</a><li> </ul> </body> </html> Identify the errors in the XHTML (None of the errors are in the doctype declaration or opening <html> tag). The <title> element should be in the <head> of the document (1 mark) The <ul> and <p> elements are overlapping. The <p> element needs to close before the <ul> (1 mark) The third <li> element hasn t been closed properly. (1 mark) The value for the href attribute for the second hyperlink should be placed in quotes (1 mark) b) Look at the following HTML elements. For each one identify the tag name, the attribute(s), the value(s) and the content of the element. i) <a href="milk_choc.html">milk</a> Tag name: a Attributes: href Values: milk_choc.html Content:milk (0.5 marks for each correct tag name, attribute(s), value(s) and the content of the element) Page of 1

4 ii) <em style="color:pink">leader s jersey</em> Tag name: em Attributes: style Values: color:pink Content: leader s jersey (0.5 marks for each correct tag name, attribute(s), value(s) and the content of the element) iii) <link rel="stylesheet" type="text/css" href="house_style.css" /> Tag name: link Attributes: rel, type, href Values: stylesheet, text/css, house_style.css Content: There is no content, <link> is an empty element. (0.5 marks for each correct tag name, attribute(s), value(s) and the content of the element) Total 10 Page 4 of 1

5 QUESTION a) Compare and contrast the different roles of CSS and HTML. How does having these two different technologies for webpage creation support accessibility? HTML is used to define the structure and meaning of document contents, not the appearance of parts of the page (1 mark). CSS is used to define the presentation (appearance) of web pages (1 mark). Separating presentation from content means that even if a device can t implement the CSS the page contents will still be understandable for the user (1 mark) b) Look at the following HTML and CSS documents HTML <div id="content" class="story"> <p> The city break is a popular type of holiday. Regardless of the weather or time of year, two or three days experiencing the sights and sounds of a different city can make a fascinating and memorable holiday. Among the most popular city break destinations are large cities such as Paris, Dubai, London and Rome. </p> <p class="story"> There are many guidebooks and on-line guides for travellers wishing to visit these popular destinations. Many of the world's smaller and lesser-known cities also have much to offer visitors, especially for short breaks. However, finding information about things to do and advice on the best places to eat and stay for these lesser-known destinations can be more difficult. </p> <h>top Destinations for City Breaks</h> <ol> <li>paris</li> <li>barcelona</li> <li>rome</li> </ol> </div> CSS p, h{ color:red; }.story, h{ font-family:arial, Helvetica, sans-serif; } #content{ background-color:pink; } The CSS has been applied to the HTML. Page 5 of 1

6 i) Describe the appearance of the second paragraph? 1 Red text, Arial font, pink background (1 mark) ii) Describe the appearance of the <h> element? 1 Red text, Arial font, pink background (1 mark) iii) Describe the appearance of text Barcelona? 1 Arial font, pink background (1 mark) iv) How will the first paragraph differ in appearance to the second paragraph in this page? Explain your answer. It won t differ in appearance (1 mark). Although the first paragraph isn t part of the story class it is nested inside the <div> element is so it will be affected by all three rules, just like the second paragraph (1 mark). c) The second CSS rule in the above example features the font-family attribute. Why are three fonts specified? If the user doesn t have the first font installed, the CSS specifies alternatives that can be used (1 mark). The final font specified is a generic font family name that will allow the browser to select an appropriate font (1 mark). Total 10 Page 6 of 1

7 QUESTION 4 a) Look at the following website directory structure. The pages in this site are linked together using relative URLs. root sports technology media index.html reds_win_league.html company_cut_jobs.html latest_reviews.html weekend_results.html developers_rally.html ratings_up.html champion_signs_new_deal.html i) A hyperlink in the page weekend_results.html links to the page champion_signs_new_deal.html. What will be the value of the href attribute for this hyperlink? champion_signs_new_deal.html (1 mark) ii) A hyperlink in the page champion_signs_new_deal.html links to the page company_cuts_jobs.html? What will be the value of the href attribute for this hyperlink?../technology/company_cuts_jobs.html (1 mark) iii) A hyperlink in the page index.html links to the page ratings_up.html. What will be the value of the href attribute for this hyperlink? media/ratings_up.html (1 mark) iv) A hyperlink in the page reds_win_league.html links to the page index.html. What will be the value of the href attribute for this hyperlink?../index.html (1 mark) 1 Page 7 of 1

8 b) What are skip links? How do skip links assist users of mobile devices and users accessing the web with a screen reader? Many websites feature navigation bars at the top of the page. Skip links allow the user to jump over the navigation directly to the content in a webpage ( marks). 6 Screen readers read out link text to the user. It can be time consuming listening to the screen reader read out every navigation option. Skip links allow quicker access to the content of the page ( marks). Some mobile devices require users to navigate using a keypad or have very small screens. Tabbing through several navigation options at the top of a page can be tedious. Skip links reduce the amount of effort needed to access the content of the page ( marks). Total 10 QUESTION 5 a) JPEG is a commonly used image file format on the web. What type of image is the JPEG format suited to? Explain your answer. Photographic images and images that have many different of colours (1 mark). JPEG format can display millions of different colours with a small file size (1 mark). Alternative image file formats such as 8-bit PNG or GIF can t display the range of colours often found in photographic images (1 mark). b) Web Designers often use image replacement techniques to get greater control over the design of a web page. i) What are image replacement techniques? Image replacement techniques involve hiding part of the HTML content using CSS (1 mark). The hidden part of the page is replaced with a background image using CSS (1 mark). ii) What particular problem do they solve for web designers? They provide a reliable way for designers to use specific fonts that may not be installed on the user s machine to display text (1 mark). The HTML is unaffected; the content is hidden, not removed. Search engines and screen readers will still be able to access the content of the page (1 mark). c) What is a codec? Why do we need to use codecs to deliver audio and video over the web? Codec stands for compressor/decompressor. A codec is a program that reduces the size of large video and audio files (1 mark). A codec is also needed to play the video/audio file (1 mark). Without the use of codecs it would be difficult to transfer large files such as video and audio over the internet (1 mark). Total 10 Page 8 of 1

9 QUESTION 6 a) HTML 5 offers a number of new form controls such as the url and controls. Which group of users in particular benefit from the use of the url and input types, why? Smart phones users (1 mark). Smart phones often have on screen keyboards with a limited number of keys visible at any time (1 mark). By knowing the type of input required the phone can display the specific keys that will be most useful to the user, for example symbol if the control is an control (1 mark). b) The <label>, <fieldset> and <legend> elements can enhance the accessibility of forms. Explain how these elements can assist users accessing the web with a screen reader. The <label> element specifies a text description for a form control. It allows the screen reader to directly associate a text description with a form element (1 mark). The <fieldset> and/or <legend> elements are used to group form controls and provide a description for this group. Screen readers can use the <legend> text to add context to <label> elements (1 mark). c) By default browsers apply little styling to HTML forms. Describe three different approaches to controlling the layout of HTML forms? Which approach would be considered best practice, why? Three approaches: Using the <br/> element to create line breaks (1 mark) Using HTML tables (1 mark). Using CSS and the float property (1 mark). 5 Using CSS would be best practice as the design of the page would be separate from the contents. The HTML would be cleaner/simpler with all the design information in the CSS file ( marks). Total 10 Page 9 of 1

10 QUESTION 7 a) It is possible to create complex page layouts using HTML tables. Name three reasons why we should use CSS and not tables for controlling the layout of a web page? Three of the following: Easier to change the design in the future. A single CSS file can specify the design for the entire site. Simpler, cleaner HTML code. Coding tables for page layout is complex. Separate presentation from content, follows web standards. Tables often don t work well on the small screen of mobile devices. Rendering complex tables can be computationally intensive. b) CSS offers a number of new properties such as curved corners on rectangles, drop shadows, and even animations. Discuss the potential advantages and disadvantages of using CSS properties in your web site designs? Advantages, can create sophisticated design effects without having to resort to using images, image replacement techniques or JavaScript (1 mark). These means simpler, cleaner code but also a reduction in the number of files/bytes to be downloaded (1 mark). Disadvantage Only the most recent browsers will support CSS properties (1 mark) and for some properties we have to use prefixes such as moz or webkit to target particular browsers (1 mark). c) What are CSS media queries? How can they help provide a usable page layout for mobile devices? CSS media queries allow us to define style sheets and CSS rules for specific screen resolutions (1 mark). Multi-columned layouts commonly seen on the web are often difficult to use on mobile devices (1 mark). CSS media queries can be used to define alternative single columned layouts specifically for mobile devices (1 mark). 4 Total 10 Page 10 of 1

11 QUESTION 8 a) i) BB is the largest form of ecommerce. What does BB stand for? 1 BB Business to Business (1 mark). ii) Name three other categories of ecommerce Three from the following: BC Business to Consumer (1 mark) CC Consumer to Consumer (1 mark) PP Peer-to-Peer (1 mark) M-Commerce (1 mark) iii) For each category provide an example of a type of website that fits the category Three of the following or alternative sensible answer that fits the model BC Online shops /Social networking sites that generate revenue through advertising (1 mark) CC - Auction websites such as ebay where consumers sell items they own to other consumers (1 mark) PP - Film studios distributing films via per to peer networks (1 mark) M-Commerce Mobile phone apps e.g. an iphone app for ebay or Amazon (1 mark) b) i) What is meant by the term user-centred design? 1 User centred design involves giving consideration for the needs of users throughout the design process. This often involves including users in the actual design process (1 mark). ii) Why should web designers take a user-centred approach to the design of websites? Users visit website to complete tasks. Users often fail to complete tasks; they can easily get lost or confused when using websites (1 mark) or designing a site that is easy to use is more important than how a websites looks (1 mark). Total 10 Page 11 of 1

12 QUESTION 9 a) A user-centred web design process often involves the production of site structure diagrams and wireframe models? What is a site structure diagram? What are wireframe models? How are these diagrams useful when planning a website? Site structure diagrams show how the content of a website will be organised in a hierarchical structure (1 mark). The diagrams are useful as they define how the user will navigate through a site (1 mark). 5 Wireframe models are rough sketches of user interface designs. They give an indication of the navigation and content of individual pages within a site. They show a level of detail that can t be communicated through a site structure diagram ( marks). One of the following Wireframe models are used in site planning as a basis to develop screen designs or build the actual site (1 mark). They are quick and cheap to produce and can be used for usability testing early in the design process (1 mark). b) What is persistent or global navigation? Why should websites implement a persistent navigation bar? A group of navigation options that appear on every page of a site (1 mark). Provide easy access to the main content and functions of a site (1 mark). Provide reassurance to the user, helps to prevent users from feeling lost in a site (1 mark). c) When designing web pages we should aim to create a clear, consistent visual hierarchy. What is a visual hierarchy, why is it particularly important when designing web pages? A clear, consistent visual hierarchy organises the page content visually so that important elements, for example the page title, site logo are emphasised (1 mark). It is particularly important on the web because users scan web pages, they don t read them in in a careful and considered way. A clear visual hierarchy makes it fast and easy for users to scan web pages (1 mark). Total 10 Page 1 of 1

13 QUESTION 10 a) Many web browsers feature developer tools, e.g. (Firebug in Firefox). Explain how these tools are useful to web developers when building XHTML and CSS websites. Any two of the following: Help fix problems in XHTML and CSS code by inspecting parts of a page. The tools can show the exact CSS that is being applied to an element (1 mark). Dynamically changing the CSS rules that are applied to element. We can the view the effect of changing a CSS rule without having to save and refresh a page (1 mark). They are useful in learning CSS techniques that are being used on other websites. The developer tools can be used to inspect these websites to see the CSS that has been applied (1 mark). b) In the context of web design what is meant by graceful degradation? Provide an example to support your explanation. Graceful degradation involves designing a website that uses the latest technologies and techniques while still ensuring the site can be viewed by as many users as possible (1 mark). An example would be the use of CSS properties. If these properties are used we should ensure the site is still viewable even by older browsers that don t support the new properties (1 mark). c) One approach for evaluating the usability of a website is heuristic evaluation such as Krug s Trunk Test or Neilson s 10 usability heuristics. What does evaluating using heuristics involve? What are the main advantages and disadvantages of testing using heuristics? Heuristic evaluation involves testing the website against a set of established design principles e.g. is there a clear site logo? (1 mark) They have the advantage that they are quick and easy to carry out. (1 mark) The disadvantage is they still rely on speculation. We only really know if a site is usable by running a usability test, actually observing real users attempt tasks on a site. (1 mark) d) Consider the following statement Learning to use a WYSIWYG authoring tool such as Dreamweaver is no substitute for learning HTML and CSS Explain what is meant by this statement. It is necessary to understand HTML and CSS in order to get the most out of WYSIWYG tools (1 mark). WYSIWYG tools don t always generate efficient, accessible or valid HTML and CSS (1 mark). It takes time for authoring tools to catch up with latest developments in web technologies (1 mark). Total 10 marks END OF PAPER Page 1 of 1

Designing and Developing a Website. December Sample Exam Marking Scheme

Designing and Developing a Website. December Sample Exam Marking Scheme Designing and Developing a Website December 2015 Sample Exam Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers

More information

Micronet International College

Micronet International College Name: /50 Class: Micronet International College Level 4 Diploma in Computing Designing and Developing a Website (DDW) Test 2 (20%) QUESTION 1 a) JPEG is a commonly used image file format on the web. What

More information

Designing and Developing a Website. 6 August Marking Scheme

Designing and Developing a Website. 6 August Marking Scheme Designing and Developing a Website 6 August 015 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions,

More information

Micronet International College

Micronet International College Micronet International College Level 4 Diploma in Computing Designing and Developing a Website (DDW) Test 1 (20%) Name: /50 Class: QUESTION 1 a) I) What are W3C standards? 1 Specifications or descriptions

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

Overview. Part I: Portraying the Internet as a collection of online information systems HTML/XHTML & CSS

Overview. Part I: Portraying the Internet as a collection of online information systems HTML/XHTML & CSS CSS Overview Part I: Portraying the Internet as a collection of online information systems Part II: Design a website using HTML/XHTML & CSS XHTML validation What is wrong?

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Tutorial 1 Getting Started with HTML5. HTML, CSS, and Dynamic HTML 5 TH EDITION

Tutorial 1 Getting Started with HTML5. HTML, CSS, and Dynamic HTML 5 TH EDITION Tutorial 1 Getting Started with HTML5 HTML, CSS, and Dynamic HTML 5 TH EDITION Objectives Explore the history of the Internet, the Web, and HTML Compare the different versions of HTML Study the syntax

More information

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites A. Pre-Production of Webpage 1. Determine the specific software needed WYSIWYG- design software that manipulates components of the web page without the user writing or editing code Uses graphical layout

More information

CMT111-01/M1: HTML & Dreamweaver. Creating an HTML Document

CMT111-01/M1: HTML & Dreamweaver. Creating an HTML Document CMT111-01/M1: HTML & Dreamweaver Bunker Hill Community College Spring 2011 Instructor: Lawrence G. Piper Creating an HTML Document 24 January 2011 Goals for Today Be sure we have essential tools text editor

More information

Designing and Developing a Website. 7 May Marking Scheme

Designing and Developing a Website. 7 May Marking Scheme Designing and Developing a Website 7 May 05 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions,

More information

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style precedence and style inheritance Understand the CSS use

More information

2004 WebGUI Users Conference

2004 WebGUI Users Conference WebGUI Site Design 2004 WebGUI Users Conference General Rules of Web Design Content is King good content is more important than anything else. keeps people interested. even if your design is bad, content

More information

Introduction to Web Technologies

Introduction to Web Technologies Introduction to Web Technologies James Curran and Tara Murphy 16th April, 2009 The Internet CGI Web services HTML and CSS 2 The Internet is a network of networks ˆ The Internet is the descendant of ARPANET

More information

introduction to XHTML

introduction to XHTML introduction to XHTML XHTML stands for Extensible HyperText Markup Language and is based on HTML 4.0, incorporating XML. Due to this fusion the mark up language will remain compatible with existing browsers

More information

CSS Cascading Style Sheets

CSS Cascading Style Sheets CSS Cascading Style Sheets site root index.html about.html services.html stylesheet.css images boris.jpg Types of CSS External Internal Inline External CSS An external style sheet is a text document with

More information

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 Name Date Final Exam Prep Questions Worksheet #1 1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 2. Which of the following

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

The University of Hawaii at Manoa Library Webpage Content/Design/Style Guidelines General Site Design... 2

The University of Hawaii at Manoa Library Webpage Content/Design/Style Guidelines General Site Design... 2 The University of Hawaii at Manoa Library Webpage Content/Design/Style Guidelines Compiled and authored by Beth Tillinghast, Chair, Library Website Redesign Committee Images provided by Wilbur Wong and

More information

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc Design Project Site: News from Latin America Design Project i385f Special Topics in Information Architecture Instructor: Don Turnbull Elias Tzoc April 3, 2007 Design Project - 1 I. Planning [ Upper case:

More information

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions Text and Layout Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11 This presentation 344 345 Text in Graphics Maximum flexibility obtained by treating text as graphics and manipulating

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Lab 1: Introducing HTML5 and CSS3

Lab 1: Introducing HTML5 and CSS3 CS220 Human- Computer Interaction Spring 2015 Lab 1: Introducing HTML5 and CSS3 In this lab we will cover some basic HTML5 and CSS, as well as ways to make your web app look and feel like a native app.

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 7 Dynamic HTML Dynamic HTML (DHTML) is a term that refers to website that use a combination of HTML, scripting such as JavaScript, CSS and the Document Object Model (DOM). HTML and

More information

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the complete URL of the linked document, including the domain

More information

INTRODUCTION TO CSS. Mohammad Jawad Kadhim

INTRODUCTION TO CSS. Mohammad Jawad Kadhim INTRODUCTION TO CSS Mohammad Jawad Kadhim WHAT IS CSS Like HTML, CSS is an interpreted language. When a web page request is processed by a web server, the server s response can include style sheets,

More information

Dreamweaver CS3 Lab 2

Dreamweaver CS3 Lab 2 Dreamweaver CS3 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

5 Snowdonia. 94 Web Applications with C#.ASP

5 Snowdonia. 94 Web Applications with C#.ASP 94 Web Applications with C#.ASP 5 Snowdonia In this and the following three chapters we will explore the use of particular programming techniques, before combining these methods to create two substantial

More information

Co. Louth VEC & Co. Monaghan VEC. Programme Module for. Web Authoring. leading to. Level 5 FETAC. Web Authoring 5N1910

Co. Louth VEC & Co. Monaghan VEC. Programme Module for. Web Authoring. leading to. Level 5 FETAC. Web Authoring 5N1910 Co. Louth VEC & Co. Monaghan VEC Programme Module for Web Authoring leading to Level 5 FETAC Web Authoring 5N1910 Web Authoring 5N1910 1 Introduction This programme module may be delivered as a standalone

More information

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information.

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. WWW: (World Wide Web) A way for information to be shared over

More information

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Note: We skipped Study Guide 1. If you d like to review it, I place a copy here: https:// people.rit.edu/~nbbigm/studyguides/sg-1.docx

More information

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft

More information

Hypertext Markup Language, or HTML, is a markup

Hypertext Markup Language, or HTML, is a markup Introduction to HTML Hypertext Markup Language, or HTML, is a markup language that enables you to structure and display content such as text, images, and links in Web pages. HTML is a very fast and efficient

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format our web site. Just

More information

Building Your Website

Building Your Website Building Your Website HTML & CSS This guide is primarily aimed at people building their first web site and those who have tried in the past but struggled with some of the technical terms and processes.

More information

11/5/16 WEB DESIGN. Branding Fall 2016

11/5/16 WEB DESIGN. Branding Fall 2016 designschool.canva.com/blog/print-vs-web/ nngroup.com/articles/differences-between-print-design-and-web-design/ howdesign.com/web-design-resources-technology/top-content-management-systems-designers/ alchemyuk.com/design/74-top-10-web-design-tips

More information

('cre Learning that works for Utah STRANDS AND STANDARDS WEB DEVELOPMENT 1

('cre Learning that works for Utah STRANDS AND STANDARDS WEB DEVELOPMENT 1 STRANDS AND STANDARDS Course Description Web Development is a course designed to guide students in a project-based environment, in the development of up-to-date concepts and skills that are used in the

More information

c122jan2714.notebook January 27, 2014

c122jan2714.notebook January 27, 2014 Internet Developer 1 Start here! 2 3 Right click on screen and select View page source if you are in Firefox tells the browser you are using html. Next we have the tag and at the

More information

Web Publishing Intermediate 2

Web Publishing Intermediate 2 Web Publishing Intermediate 2 Building a Three Column Site with divs and float Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 The CIG Web Site... 3 Using the Div

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

In this example on 20X200, the contrast ratio between the navigation text and its background is 1.57:1.

In this example on 20X200, the contrast ratio between the navigation text and its background is 1.57:1. ACCESSIBLITY COMMON DEVELOPER MISTAKES Web Council Meeting, May 11 th 2011 1. Too Low Contrast The contrast between text and background is a major contributing factor to the readability of a website. This

More information

HyperText Markup Language (HTML)

HyperText Markup Language (HTML) HyperText Markup Language (HTML) Mendel Rosenblum 1 Web Application Architecture Web Browser Web Server / Application server Storage System HTTP Internet LAN 2 Browser environment is different Traditional

More information

Which is why we ll now be learning how to write in CSS (or cascading sheet style)

Which is why we ll now be learning how to write in CSS (or cascading sheet style) STYLE WITH CSS My word is changing things in HTML difficult! Can you imagine if we had to do that for every single thing we wanted to change? It would be a nightmare! Which is why we ll now be learning

More information

Technical Communication A Practical Approach: Chapter 11: Web Pages and

Technical Communication A Practical Approach: Chapter 11: Web Pages and Publish on the Web Technical Communication A Practical Approach: Chapter 11: Web Pages and Writing for the Web William Sanborn Pfeiffer Kaye Adkins Craig Baehr Revised for ENGR 139 by x.m. spring 2010

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

READSPEAKER ENTERPRISE HIGHLIGHTING 2.5

READSPEAKER ENTERPRISE HIGHLIGHTING 2.5 READSPEAKER ENTERPRISE HIGHLIGHTING 2.5 Advanced Skinning Guide Introduction The graphical user interface of ReadSpeaker Enterprise Highlighting is built with standard web technologies, Hypertext Markup

More information

Unit 10 - Client Side Customisation of Web Pages. Week 5 Lesson 1 CSS - Selectors

Unit 10 - Client Side Customisation of Web Pages. Week 5 Lesson 1 CSS - Selectors Unit 10 - Client Side Customisation of Web Pages Week 5 Lesson 1 CSS - Selectors Last Time CSS box model Concept of identity - id Objectives Selectors the short story (or maybe not) Web page make-over!

More information

More about HTML. Digging in a little deeper

More about HTML. Digging in a little deeper More about HTML Digging in a little deeper Structural v. Semantic Markup Structural markup is using to encode information about the structure of a document. Examples: , , , and

More information

INTRODUCTION TO WEB USING HTML What is HTML?

INTRODUCTION TO WEB USING HTML What is HTML? Geoinformation and Sectoral Statistics Section (GiSS) INTRODUCTION TO WEB USING HTML What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language

More information

Foundation of Web Goal 4: Proficiency in Adobe Dreamweaver CC

Foundation of Web Goal 4: Proficiency in Adobe Dreamweaver CC 1. Setting Project Requirements 1.1 Identify the purpose, audience, and audience needs for a website. 1.2 Identify web page content that is relevant to the website purpose and appropriate for the target

More information

A network is a group of two or more computers that are connected to share resources and information.

A network is a group of two or more computers that are connected to share resources and information. Chapter 1 Introduction to HTML, XHTML, and CSS HTML Hypertext Markup Language XHTML Extensible Hypertext Markup Language CSS Cascading Style Sheets The Internet is a worldwide collection of computers and

More information

Vebra Search Integration Guide

Vebra Search Integration Guide Guide Introduction... 2 Requirements... 2 How a Vebra search is added to your site... 2 Integration Guide... 3 HTML Wrappers... 4 Page HEAD Content... 4 CSS Styling... 4 BODY tag CSS... 5 DIV#s-container

More information

RICH ENTERPRISES. Small Business Series. Getting Started with HTML

RICH ENTERPRISES. Small Business Series. Getting Started with HTML RICH ENTERPRISES Small Business Series Getting Started with HTML SMALL BUSINESS SERIES Getting Started With HTML Rich Enterprises 1512 Dietrich Road Twin Lakes, WI 53181 Phone/Fax 262-877-8630 Introduction

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Shane Gellerman 10/17/11 LIS488 Assignment 3

Shane Gellerman 10/17/11 LIS488 Assignment 3 Shane Gellerman 10/17/11 LIS488 Assignment 3 Background to Understanding CSS CSS really stands for Cascading Style Sheets. It functions within an HTML document, so it is necessary to understand the basics

More information

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data.

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. Review The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. It is not the internet! It is a service of the internet.

More information

Review of HTML. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar

Review of HTML. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar Review of HTML Chapter 3 Fundamentals of Web Development 2017 Pearson Fundamentals of Web Development http://www.funwebdev.com - 2 nd Ed. What Is HTML and Where Did It Come from? HTML HTML is defined as

More information

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13.

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13. :: DIGITAL IMAGING FUNDAMENTALS :: CLASS NOTES CLASS :: 13 04.26 2017 3 Hours AGENDA HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION home works

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4 Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML 4.01 Version: 4.01 Transitional Hypertext Markup Language is the coding behind web publishing. In this tutorial, basic knowledge of HTML will be covered

More information

Dreamweaver: Portfolio Site

Dreamweaver: Portfolio Site Dreamweaver: Portfolio Site Part 3 - Dreamweaver: Developing the Portfolio Site (L043) Create a new Site in Dreamweaver: Site > New Site (name the site something like: Portfolio, or Portfolio_c7) Go to

More information

INTRODUCTION TO HTML5! HTML5 Page Structure!

INTRODUCTION TO HTML5! HTML5 Page Structure! INTRODUCTION TO HTML5! HTML5 Page Structure! What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in 1999. The web has changed a lot since

More information

Chapter 1 Introduction to HTML, XHTML, and CSS

Chapter 1 Introduction to HTML, XHTML, and CSS Chapter 1 Introduction to HTML, XHTML, and CSS MULTIPLE CHOICE 1. The world s largest network is. a. the Internet c. Newsnet b. the World Wide Web d. both A and B A PTS: 1 REF: HTML 2 2. ISPs utilize data

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

<body bgcolor=  fgcolor=  link=  vlink=  alink= > These body attributes have now been deprecated, and should not be used in XHTML. CSS Formatting Background When HTML became popular among users who were not scientists, the limited formatting offered by the built-in tags was not enough for users who wanted a more artistic layout. Netscape,

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

Unit title: Web Development: Essential Content (SCQF level 7)

Unit title: Web Development: Essential Content (SCQF level 7) SQA Advanced Unit specification General information Unit title: Web Development: Essential Content (SCQF level 7) Unit code: HT05 47 Superclass: CB Publication date: August 2017 Source: Scottish Qualifications

More information

CHAPTER 3 WEB DESIGN BASICS KEY CONCEPTS

CHAPTER 3 WEB DESIGN BASICS KEY CONCEPTS BASICS OF WEB DESIGN CHAPTER 3 WEB DESIGN BASICS KEY CONCEPTS 1 LEARNING OUTCOMES Describe the most common types of website organization Describe principles of visual design Design for your target audience

More information

Dear Candidate, Thank you, Adobe Education

Dear Candidate, Thank you, Adobe Education Dear Candidate, In preparation for the Web Communication certification exam, we ve put together a set of practice materials and example exam items for you to review. What you ll find in this packet are:

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 1 1 HTML and Web Page Basics Are you interested in building your own Web pages? This chapter introduces you to basic HTML

More information

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank Multiple Choice. Choose the best answer. 1. What element is used to configure a new paragraph? a. new b. paragraph c. p d. div 2. What element is used to create the largest heading? a. h1 b. h9 c. head

More information

SecurityCenter 508 Compliance

SecurityCenter 508 Compliance SecurityCenter 508 Compliance Summary Table Section 508 Voluntary Product Accessibility Template Tenable Network Security, Inc. Updated May 5, 2015 SecurityCenter 5 The latest version of this document

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Bonus Lesson: Working with Code

Bonus Lesson: Working with Code 15 Bonus Lesson: Working with Code In this lesson, you ll learn how to work with code and do the following: Select code elements in new ways Collapse and expand code entries Write code using code hinting

More information

Adobe Web Communication using Dreamweaver CS5 Curriculum/Certification mapping

Adobe Web Communication using Dreamweaver CS5 Curriculum/Certification mapping Adobe Web Communication using Dreamweaver CS5 Curriculum/Certification mapping OBJECTIVES Domain 1.0 Setting Project Requirements 1.1 Identify the purpose, audience, and audience needs for a website. 1.2

More information

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS 1 LEARNING OUTCOMES Describe the anatomy of a web page Format the body of a web page with block-level elements including headings, paragraphs, lists,

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

HIERARCHICAL ORGANIZATION

HIERARCHICAL ORGANIZATION A clearly defined home page Navigation links to major site sections HIERARCHICAL ORGANIZATION Often used for commercial and corporate websites 1 Repetition DESIGN PRINCIPLES Repeat visual elements throughout

More information

LECTURE 05 WEB DESIGN

LECTURE 05 WEB DESIGN MULTIMEDIA TECHNOLOGIES LECTURE 05 WEB DESIGN IMRAN IHSAN ASSISTANT PROFESSOR DESIGN FOR TARGET AUDIANCE CONSIDER THE TARGET AUDIENCE OF THESE SITES. WEB PAGE DESIGN BROWSER COMPATIBILITY Web pages do

More information

CSS Cascading Style Sheets

CSS Cascading Style Sheets CSS Cascading Style Sheets site root index.html about.html services.html stylesheet.css charlie.jpg Linking to your HTML You need to link to your css in the of your HTML file.

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

Web Design, 5 th Edition

Web Design, 5 th Edition Planning a Successful Website: Part 2 Web Design, 5 th Edition Chapter Objectives Discuss the relationship between page length, content placement, and usability Complete Step : Specify the s navigation

More information

Using CSS in Web Site Design

Using CSS in Web Site Design Question 1: What are some of the main CSS commands I should memorize? Answer 1: The most important part of understanding the CSS language is learning the basic structure and syntax so you can use the language

More information

Downloads: Google Chrome Browser (Free) - Adobe Brackets (Free) -

Downloads: Google Chrome Browser (Free) -   Adobe Brackets (Free) - Week One Tools The Basics: Windows - Notepad Mac - Text Edit Downloads: Google Chrome Browser (Free) - www.google.com/chrome/ Adobe Brackets (Free) - www.brackets.io Our work over the next 6 weeks will

More information

CMPT 165: More CSS Basics

CMPT 165: More CSS Basics CMPT 165: More CSS Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 14, 2011 1 The Favorites Icon The favorites icon (favicon) is the small icon you see

More information

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles Using Dreamweaver 6 So far these exercises have deliberately avoided using HTML s formatting options such as the FONT tag. This is because the basic formatting available in HTML has been made largely redundant

More information

Chapter 2:- Introduction to XHTML. Compiled By:- Sanjay Patel Assistant Professor, SVBIT.

Chapter 2:- Introduction to XHTML. Compiled By:- Sanjay Patel Assistant Professor, SVBIT. Chapter 2:- Introduction to XHTML Compiled By:- Assistant Professor, SVBIT. Outline Introduction to XHTML Move to XHTML Meta tags Character entities Frames and frame sets Inside Browser What is XHTML?

More information