Designing and Developing a Website. 6 August Marking Scheme

Size: px
Start display at page:

Download "Designing and Developing a Website. 6 August Marking Scheme"

Transcription

1 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, and there will frequently be alternative responses which will provide a valid answer. Markers are advised that, unless a question specifies that an answer be provided 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 should be the first authority. Throughout the marking, please credit any valid alternative point. Where markers award half marks in any part of a question, they should ensure that the total mark recorded for the question is rounded up to a whole mark. Marker's comments: Moderator's comments: Mark: Moderated mark: Final mark: Penalties applied for academic malpractice:

2 Answer ALL questions Question 1 a) Consider the following statement: Marks The Internet and the World Wide Web (WWW) are simply different terms for describing the same thing. Is this statement true or false? You should support your choice with ONE (1) reason. Award 1 mark for stating false. Awarding up to 1 mark for the explanation, which can include: The WWW is part of the Internet. The Internet is much more than the WWW. Note: Credit alternative valid explanations. b) InkML is an example of World Wide Web Consortium (W3C) standards. i) Provide TWO () different examples of W3C web standard. Examples include: HTML 5, CSS.1; OWL; and RDF. Note: Credit alternative valid examples. ii) When developing websites, why is it very important to follow W3C web standards? Award 1 mark for each bullet point up to a maximum of marks. W3C standards are created to support a wide range of web users. If we follow W3C web standards we can be confident our websites will be accessible to as many web users as possible. Question 1 continues on next page Page of 0

3 c) Briefly explain what is meant by accessibility in the context of web design and provide THREE (3) reasons for designing websites that are accessible. 4 Accessibility is about designing websites that people with disabilities can use (1 mark). Award 1 mark for each bullet point up to a maximum of 3 marks. Disabled users make up a significant proportion of web users. Accessible sites also assist any users that may not be registered as disabled e.g. elderly web users. Many countries have legal requirements to support disabled users. Accessible sites are often easier to use for users with mobile devices. Total: 10 Marks Page 3 of 0

4 Question Marks a) 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) <em style= margin:10px >concern</em> Award ½ marks for correctly identifying each feature up to a maximum of marks. Tag name: em Attribute: style Value: margin:10px Content: concern ii) <area shape="circle" coords="90,50,10" href="zebra.html" alt="zebra" /> Award ½ marks for correctly identifying each feature up to a maximum of marks. Tag name: area Attributes: shape, coords, href, alt Values: circle, 90,50,10, zebra.html, zebra Content: No content <area> is an empty element iii) <q class= positive >It was the best product ever</q> Award ½ marks for correctly identifying each feature up to a maximum of marks. Tag name: q Attribute: class Value: positive Content: It was the best product ever b) HTML elements can be nested. Briefly explain what is meant by the term nesting Award up to marks for an accurate description. Nesting is when one element is placed inside another. Note: Award 1 mark for a partially correct answer. c) Briefly explain the purpose of a document type declaration in an HTML document and outline where it should appear in a web page. A document type declaration is a line of code that specifies which version of HTML the page has been written in. Browsers use this information to display the page correctly. (1 mark) It should always be the first line of code in an HTML document. (1 mark) Total: 10 Marks Page 4 of 0

5 Question 3 Marks a) Consider the following CSS that has been applied to a webpage. *{ padding:0px; } #intro p{ color:blue; }.content{ border:1px solid black; } This is the only CSS that has been applied to the document. For each statement below, state if it is true or false. You should support your choice with an answer. i) All the paragraphs in the document will have a padding of 0px. True. (1 mark) The * selector means select everything in the document. This will include paragraphs and their padding will be set to 0px (1 mark) ii) All the paragraphs will be coloured blue. False (1 mark) The rule that sets paragraphs to blue uses the descendent selector. Only paragraphs nested inside the element with the id of intro will be coloured blue (1 mark) iii) None of the paragraphs will have a visible border. False (1 mark) The rule for specifying the border uses the class selector. It is possible for some or all of the paragraphs to feature this class. These paragraphs will then have the visible border (1 mark) b) There are a number of different ways of applying CSS to a webpage, an external style sheet, an embedded style sheet using the <style> tags, and inline styles applied using the style attribute. Which approach is usually considered the most useful? Justify your answer. An external style sheet (1 mark). A single CSS file can be applied to all the pages in a site making this approach the most efficient (1 mark). The design of the site can also be easily modified by changing a single CSS file (1 mark). It keeps the presentation separate from mark-up/content (1 mark). 4 Total: 10 Marks Page 5 of 0

6 Question 4 Marks a) Consider the following website structure: root North_ America Europe usa.html canada.html UK index.html england.html scotland.html germany.html i) A hyperlink in the page germany.html links to the page scotland.html. What will be the value of the href attribute for this hyperlink? 1 ii) UK/scotland.html A hyperlink in the page scotland.html links to the page england.html. What will be the value of the href attribute for this hyperlink? england.html 1 iii) A hyperlink in the page england.html links to the page index.html. What will be the value of the href attribute for this hyperlink? 1../../index.html iv) A hyperlink in the page index.html links to the page canada.html. What will be the value of the href attribute for this hyperlink? 1 North_America/canada.html b) Consider the following piece of HTML code: <a href="history.html" accesskey="h">company History</a> This HTML features the accesskey attribute. i) Briefly explain what is meant by an access key. 1 Access keys allow web developers to associate specific keys with HTML elements. Using an access key, users can jump to specific parts of a web page. Question 4 continues on next page Page 6 of 0

7 ii) What is a modifier key? 1 A modifier key is used to activate the access key e.g. Alt is pressed along with the access key to specify that the user wants to activate the access key. iii) Which groups of users can benefit from the use of access keys? 1 Any users that navigate websites with a keyboard and not a mouse. This includes users with visual impairments that may be using a screen reader, and users with motor disabilities that may not be able to use a mouse. iv) State THREE (3) problems associated with the use of access keys. 3 Different web browsers use different modifier keys e.g. Internet Explorer use Alt, Firefox uses Alt and Shift. There is not a standard way of letting users know what the access keys are. Access keys can come into conflict with browser shortcuts e.g. Alt+f is the shortcut for the file menu in Internet Explorer. Total: 10 Marks Page 7 of 0

8 Question 5 Marks a) Images can be inserted using data URIs. Briefly describe what is meant by a URI and outline ONE (1) potential benefit of using data URIs. Award 1 mark for the description: URI is image data embedded directly in HTML or CSS. Award 1 mark for an example such as: Images created in this way have the advantage that they limit the number of HTTP requests the browser has to make as it doesn t have to request a separate image file. This can speed up the loading of a web page. b) What is a codec? Why do we need to use codecs to deliver audio and video over the web? Award 1 mark for the description Codec is a compressor/decompressor Award 1 mark for either bullet point A codec reduces the size of large video and audio files. A codec is also needed to decompress the audio/video file so that it can be played. Without the use of codecs it would be difficult to transfer large files such as video and audio over the Internet. c) State ONE (1) feature of 8-bit PNG images and outline which types of images this file format is suited to presenting. 8-bit PNG images feature a limited range of colours and typically have a small file size (1 mark). They are suited to displaying any images that have a limited range of colours, for example logos, diagrams, charts, line drawings (1 mark). d) State ONE (1) feature of JPEG images and outline which types of images this file format is suited to presenting. JPEG images can feature millions of colours but typically have a larger file size than the equivalent 8-bit PNG image (1 mark). They are suited to images that feature many different colours. This usually means photographic type images (1 mark). Question 5 continue on next page Page 8 of 0

9 e) The <img> element is used to insert an image into a webpage. Why should the <img> element always feature an alt attribute? It should feature this attribute to support accessibility (1 mark). The alt attribute specifies alternative text. This is text that will be read out by screen readers that can not display the image (1 mark). Total: 10 Marks Page 9 of 0

10 Question 6 Marks a) Using HTML tables, it is possible to create grids that can be used to control the layout of a web page. i) Provide ONE (1) alternative to using tables for page layout. 1 CSS Note: Credit alternative valid examples ii) State THREE (3) disadvantages of using tables as a page layout device. 3 Award 1 mark for each bullet point up to a maximum of 3 marks. Complex tables are time consuming to code. They often cause accessibility problems for users with screen readers. Can cause problems for users with small screen devices. They can resize poorly for small screens, especially if they feature many columns. Maintenance - updating the design of a site requires changing the HTML in every page in the site. Question 6 continue on next page Page 10 of 0

11 b) You have been asked to create an HTML form that will ask the user to respond under the following three categories: 6 1) Name: ) Age: Under or over 3) Languages spoken: Mandarin Spanish English For each of these three categories, identify which type of form control should be used when creating the HTML page. The maximum number of marks awarded to this question is 6. Award up to marks for each question. Question 1 (Name) - A single line text box (1 mark). The user s name is short enough to fit in a single line text box (1 mark). Question (Age) - Radio buttons (1 mark). The user is required to select a single option from a list (1 mark). Question 3 (Languages Spoken) Checkboxes (1 mark). The user needs to be able to select multiple options from a list (1 mark). Total: 10 Marks Page 11 of 0

12 Question 7 a) Consider the following HTML and CSS documents: Marks 4 HTML CSS <div class="box1"><div class="box"></div></div> <div class="box3"></div> <div class="box4"></div> div { border:1px solid black; }.box1,.box3,.box4 { width:100px; height:100px; }.box1,.box3 { float:left; }.box{ background-color:black; float:right; width:50px; height:50px; }.box4{ clear:both; } The CSS has been applied to the HTML. Draw a diagram showing how this page will appear when rendered in a browser. Question 7 continue on next page Page 1 of 0

13 The maximum number of marks awarded to the question is 4. Award up to marks for each bullet point: The <div> elements are approximately the correct size and shape The elements have the correct position and layout (student has understood the effect of the float and clear properties). b) An alternative to using floats is to use either the flex-box or grid layout CSS modules. State ONE (1) advantage and ONE (1) disadvantage of using either the flex-box or grid layout. Award 1 mark for each bullet point up to a maximum of marks. Advantage - Simpler CSS that is easier to write. Disadvantage - Browser support. There isn t widespread browser support for these new CSS properties. c) Responsive web design involves creating websites that work effectively across a wide range of different devices and screen sizes. Two key aspects of responsive web design are fluid grids and the use of media queries. i) Briefly explain what is meant by a fluid grid and how its use can support responsive web design. Award 1 mark for each bullet point up to a maximum of marks. Fluid grids are page layouts defined using CSS that size elements using relative units of measure such as ems or percentages instead of fixed units such as pixels. They assist responsive web design as they allow the page design to re-size for different sized screens. Question 7 continue on next page Page 13 of 0

14 ii) Briefly explain what is meant by a media query and how its use can support responsive web design. Award 1 mark for each bullet point up to a maximum of marks. Media queries are rules that specify when certain CSS rules should be applied. Media queries can use the width of the browser window as a rule for applying CSS and supports responsive web design as different CSS rules can be applied for small and large screen devices. Total: 10 Marks Page 14 of 0

15 Question 8 a) Briefly explain what is meant by an e-commerce revenue model and briefly discuss FIVE (5) different e-commerce revenue models. Marks 6 The maximum number of marks awarded to this question is 6. Award 1 mark for the definition. A revenue model describes how a business will generate income Award 1 mark for each bullet point up to a maximum of 5 marks. Advertising Revenue Model. Revenue is generated from advertisers who pay to advertise on a website. Sales Revenue Model. A business sells products through a website. Subscription Revenue Model. Users of a website are charged a fee to access content. Transaction Fee Revenue Model. A website receives a fee for acting as an intermediate in a transaction. Affiliate Revenue Model. A website links to an affiliate site. If a user clicks through to the affiliate site and makes a purchase, the company receives a referral fee. b) i) What are wireframe models? The maximum number of marks awarded to this question is. Wireframe models are drawings that represent pages in a website. Wireframe models show details such as navigation options and content of pages. They do not represent visual features of a page such as colours or typography. ii) Outline TWO () ways wireframe models support the designing of a website. Award 1 mark for each bullet point up to a maximum of marks Wireframe models are useful as page level plans. Using a wireframe model as a guide, a designer knows which page elements are required in a page (e.g. navigation options) and if there will be video content or an image on the page. A series of wireframe models can used as a basis for usability testing early in the development of a site without going to the time and expense of developing a fully working version of the site. Total: 10 Marks Page 15 of 0

16 Question 9 a) Consider the following screen shot of a website: Marks 8 ( Accessed March 015) Analyse this page design from a usability point of view and briefly outline FOUR (4) design features that relate to usability. You may describe positive design features that enhance the usability of the page. You may also describe aspects that you think are bad design features; such as features that could be confusing for users and impair the usability of the site. For each design feature explain why it is a good/bad design feature. Question 9 continue on next page Page 16 of 0

17 The maximum number of marks awarded to this question is 8. For each design feature, award 1 mark for listing the design feature and 1 mark for the explanation. Examples Good design features The navigation bar features a you are here indicators on the current navigation options New Vehicles and Features and Specifications, and Equipment. This clearly shows the user which section of the site they are viewing. The page title Vauxhall Astra Equipment is the largest text. This will stand out for users letting them know which page they are viewing. Bad Design features The logo doesn t follow website conventions. It is in the top-right corner. Most users would expect this to be in the top-left corner. There appear to be two global navigation bars, one at the very top of the page and the one where new vehicles is highlighted. It isn t clear how content has been split between these navigation bars. For example, both appear to feature very similar options in Quote and Offers and Finance b) Briefly explain what is meant by breadcrumb navigation and state ONE (1) way in which it can help improve the usability of a website. Award 1 mark for the definition of breadcrumb: Breadcrumb navigation shows the user their position in the site structure. It shows the sub-section and section the current page. Award 1 mark for an example, such as: It is useful to users as it allows users to re-trace their steps when navigating a large site. Total: 10 Marks Page 17 of 0

18 Question 10 a) The usability of a website can be evaluated using design principles such as Nielsen s ten Heuristics. State ONE (1) advantage and TWO () disadvantages of using an approach such as Nielsen s ten heuristics. Marks 3 Award 1 mark for each bullet point up to a maximum of 3 marks. Advantage It is quick and easy to carry out the evaluation. A single person can carry out the evaluation in a short period of time. Disadvantage It doesn t involve real users performing tasks with the site. The only way to really know if a site is usable is to observer real users attempting to perform tasks, a usability test. b) According to Stat Counter Google Chrome was the most popular web browser in February 015. i) Identify THREE (3) other web browsers with significant market share. 3 Internet Explorer, Firefox, Safari Note: Credit alternative valid examples ii) Briefly explain why using a range of web browsers can cause problems for web designers. Award 1 mark for each bullet point up to a maximum of marks. Different web browsers support different CSS and HTML features and implement features in different ways. A design which works well in one browser may not work at all in a different browser. Question 10 continue on next page Page 18 of 0

19 c) Most modern web browser feature developer tools. State TWO () ways in which developer tools can help web developers when designing a website. Award 1 mark for each bullet point up to a maximum of marks. Developer tools will report errors in pages such as incorrectly structured HTML or CSS Developer tools allow us to inspect page elements to see exactly which CSS properties are being applied to elements. Individual properties can be switched on and off allowing us to easily see the effect of CSS rules that have been written. Developer tools can be used on other websites to inspect the HTML and CSS. This is a good way for designers to learn new techniques. Total: 10 Marks End of Examination Paper Page 19 of 0

20 Learning Outcomes matrix Question Learning Outcomes assessed 1 5, 6 Yes, Yes 3, Yes 4 Yes 5 3 Yes 6, 3, 5 Yes 7 Yes 8 6 Yes 9 1,, 5 Yes 10 1,, 4, 5 Yes Grade descriptors Marker can differentiate between varying levels of achievement Learning Outcome Pass Merit Distinction Design a website to address looselydefined requirements Provide adequate design to address the specification Use web development tools to build (X)HTMLand CSS-based websites to address well-defined specifications Understand the technology and tools needed to use multimedia in the context of a website Develop test strategies and apply these to a website Understand the need for Web standards Understand the concepts associated with using the Internet and the World Wide Web for business Demonstrate adequate and appropriate ability to build artefact Demonstrate adequate level of understanding Show adequate development Demonstrate adequate level of understanding Demonstrate adequate level of understanding Provide detailed and appropriate design to address the specification Demonstrate sound and consistently appropriate ability to build artefact Demonstrate robust level of understanding Show sound and appropriate development Demonstrate robust level of understanding Demonstrate robust level of understanding Provide wholly appropriate and innovative design that meets the specification Demonstrate exceptional ability to build artefact Demonstrate highly comprehensive level of understanding Show innovative and highly appropriate development Demonstrate highly comprehensive level of understanding Demonstrate highly comprehensive level of understanding Page 0 of 0

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. 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

Software Development Techniques. 26 November Marking Scheme

Software Development Techniques. 26 November Marking Scheme Software Development Techniques 26 November 2015 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

DESIGNING AND DEVELOPING A WEBSITE MARKING SCHEME

DESIGNING AND DEVELOPING A WEBSITE MARKING SCHEME 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,

More information

Designing and Developing a Website. 7 May Examination Paper. Time: 3 hours

Designing and Developing a Website. 7 May Examination Paper. Time: 3 hours Designing and Developing a Website 7 May 205 Examination Paper Answer ALL questions. Clearly cross out surplus answers. Time: 3 hours The maximum mark for this paper is 00. Any reference material brought

More information

Software Development Techniques. December Sample Exam Marking Scheme

Software Development Techniques. December Sample Exam Marking Scheme Software Development Techniques 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 to

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

IT Skills. September Marking Scheme

IT Skills. September Marking Scheme IT Skills September 205 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, and there will frequently

More information

Perfect Student Midterm Exam March 20, 2007 Student ID: 9999 Exam: 7434 CS-081/Vickery Page 1 of 5

Perfect Student Midterm Exam March 20, 2007 Student ID: 9999 Exam: 7434 CS-081/Vickery Page 1 of 5 Perfect Student Midterm Exam March 20, 2007 Student ID: 9999 Exam: 7434 CS-081/Vickery Page 1 of 5 NOTE: It is my policy to give a failing grade in the course to any student who either gives or receives

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

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

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

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Proper_Name Final Exam December 21, 2005 CS-081/Vickery Page 1 of 4

Proper_Name Final Exam December 21, 2005 CS-081/Vickery Page 1 of 4 Proper_Name Final Exam December 21, 2005 CS-081/Vickery Page 1 of 4 NOTE: It is my policy to give a failing grade in the course to any student who either gives or receives aid on any exam or quiz. INSTRUCTIONS:

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

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

Mark Scheme. Edexcel Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web

Mark Scheme. Edexcel Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web Mark Scheme Edexcel Certificate in Digital Applications Unit 5: Coding for the Web General marking guidance All candidates must receive the same treatment. Examiners must mark the first candidate in exactly

More information

Mark Scheme (Results)

Mark Scheme (Results) Mark Scheme (Results) Pearson Edexcel Certificate in Digital Applications Unit 5: Coding for the Web Edexcel and BTEC Qualifications Edexcel and BTEC qualifications are awarded by Pearson, the UK s largest

More information

GIMP WEB 2.0 MENUS WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR CREATING AN HTML LIST

GIMP WEB 2.0 MENUS WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR CREATING AN HTML LIST GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR Hover effect: CREATING AN HTML LIST Most horizontal or vertical navigation bars begin with a simple

More information

Page 1 of 11 Units: - All - Teacher: WebPageDesignI, CORE Course: WebPageDesignI Year: 2012-13 Introduction to the World of Web Standards Why do web development standards play a key role in the proliferation

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

Web Design and Development Tutorial 03

Web Design and Development Tutorial 03 Table of Contents Web Design & Development - Tutorial 03... 2 Using and Applying CSS to XHTML... 2 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 3 Parent / Child Elements...

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Cascading Style Sheets CSCI 311

Cascading Style Sheets CSCI 311 Cascading Style Sheets CSCI 311 Learning Objectives Learn how to use CSS to style the page Learn to separate style from structure Styling with CSS Structure is separated from style in HTML5 CSS (Cascading

More information

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model)

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model) INTRO TO CSS RECAP HTML WHAT IS CSS ADDING CSS TO YOUR HTML DOCUMENT CSS IN THE DIRECTORY TREE CSS RULES A FEW CSS VALUES (colour, size and the box model) CSS SELECTORS SPECIFICITY WEEK 1 HTML In Week

More information

Web Development IB PRECISION EXAMS

Web Development IB PRECISION EXAMS PRECISION EXAMS Web Development IB EXAM INFORMATION Items 53 Points 73 Prerequisites COMPUTER TECHNOLOGY Grade Level 10-12 Course Length ONE YEAR Career Cluster INFORMATION TECHNOLOGY Performance Standards

More information

Creating Layouts Using CSS. Lesson 9

Creating Layouts Using CSS. Lesson 9 Creating Layouts Using CSS Lesson 9 CSS Page Layout Advantages Greater typography control Style is separate from structure Potentially smaller documents Easier site maintenance Increased page layout control

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

Mark Scheme. June Pearson Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web

Mark Scheme. June Pearson Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web Mark Scheme June 016 Pearson Level Certificate in Digital Applications Unit 5: Coding for the Web General marking guidance All candidates must receive the same treatment. Examiners must mark the first

More information

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES CLASS :: 13 12.01 2014 AGENDA SIMPLE CSS MENU W/ HOVER EFFECTS :: The Nav Element :: Styling the Nav :: UL, LI, and Anchor Elements :: Styling the UL and LI Elements TEMPLATE CREATION :: Why Templates?

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Horizontal Rule Element

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Horizontal Rule Element Web Development & Design Foundations with HTML5 Ninth Edition Chapter 4 Visual Elements and Graphics Learning Objectives (1 of 2) 4.1 Create and format lines and borders on web pages 4.2 Apply the image

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

NAVIGATION INSTRUCTIONS

NAVIGATION INSTRUCTIONS CLASS :: 13 12.01 2014 NAVIGATION INSTRUCTIONS SIMPLE CSS MENU W/ HOVER EFFECTS :: The Nav Element :: Styling the Nav :: UL, LI, and Anchor Elements :: Styling the UL and LI Elements CSS DROP-DOWN MENU

More information

Module 2 (VII): CSS [Part 4]

Module 2 (VII): CSS [Part 4] INTERNET & WEB APPLICATION DEVELOPMENT SWE 444 Fall Semester 2008-2009 (081) Module 2 (VII): CSS [Part 4] Dr. El-Sayed El-Alfy Computer Science Department King Fahd University of Petroleum and Minerals

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

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

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

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Review CSS Layout Preview Review Introducting CSS What is CSS? CSS Syntax Location of CSS The Cascade Box Model Box Structure Box Properties Review Style is cascading

More information

Edexcel CiDA Course Overview

Edexcel CiDA Course Overview Edexcel CiDA Course Overview Level 2 Certificate in Digital Applications: Graded A*-C 2 units Coursework & examination Assessment objectives: Applying creative processes to design digital products Selecting

More information

Block & Inline Elements

Block & Inline Elements Block & Inline Elements Every tag in HTML can classified as a block or inline element. > Block elements always start on a new line (Paragraph, List items, Blockquotes, Tables) > Inline elements do not

More information

APPLIED COMPUTING 1P01 Fluency with Technology

APPLIED COMPUTING 1P01 Fluency with Technology APPLIED COMPUTING 1P01 Fluency with Technology Cascading Style Sheets (CSS) APCO/IASC 1P01 Brock University Brock University (APCO/IASC 1P01) Cascading Style Sheets (CSS) 1 / 39 HTML Remember web pages?

More information

INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations

INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations Hun Myoung Park (2/2/2018) Layout & Position: 1 INTERNATIONAL UNIVERSITY OF JAPAN Public Management and Policy Analysis Program Graduate School of International Relations DCC5382 (2 Credits) Introduction

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

Mark Scheme (Results) January Pearson Edexcel Level 2 Diploma In Digital Applications. Unit 5: Coding for the Web

Mark Scheme (Results) January Pearson Edexcel Level 2 Diploma In Digital Applications. Unit 5: Coding for the Web Mark Scheme (Results) January 207 Pearson Edexcel Diploma In Digital Applications Unit 5: Coding for the Web Edexcel and BTEC Qualifications Edexcel and BTEC qualifications are awarded by Pearson, the

More information

Interactive Media CTAG Alignments

Interactive Media CTAG Alignments Interactive Media CTAG Alignments This document contains information about eight Career-Technical Articulation Numbers (CTANs) for the Media Arts Career-Technical Assurance Guide (CTAG). The CTANs are:

More information

CompuScholar, Inc. Alignment to Utah's Web Development I Standards

CompuScholar, Inc. Alignment to Utah's Web Development I Standards Course Title: KidCoder: Web Design Course ISBN: 978-0-9887070-3-0 Course Year: 2015 CompuScholar, Inc. Alignment to Utah's Web Development I Standards Note: Citation(s) listed may represent a subset of

More information

VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY

VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY Innovative Vocational Education and Training VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY YEAR 2 (UNITS 3 & 4) TEACHER RESOURCE CERTIFICATE III (ICT30115) CORE COMPETENCIES and SELECTED ELECTIVES

More information

1 of 7 8/27/2014 2:26 PM Units: Teacher: WebPageDesignI, CORE Course: WebPageDesignI Year: 2012-13 Designing & Planning Web Pages This unit will give students a basic understanding of core design principles

More information

Introduction to Programming. June Marking Scheme

Introduction to Programming. June Marking Scheme Introduction to Programming June 2015 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, and

More information

Hyper Text Markup Language HTML: A Tutorial

Hyper Text Markup Language HTML: A Tutorial Hyper Text Markup Language HTML: A Tutorial Ahmed Othman Eltahawey December 21, 2016 The World Wide Web (WWW) is an information space where documents and other web resources are located. Web is identified

More information

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) CS 1033 Multimedia and Communications Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Table Properties Reference Guide The Property

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

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 3. Page Layout Design Objectives Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development Objectives INFS 2150 Introduction to Web Development 3. Page Layout Design Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

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

SOEN287: Web Programming

SOEN287: Web Programming Concordia University Department of Computer Science and Software Engineering SOEN287: Web Programming Summer 2016 Programming assignment #1 Deadline: Friday, July, 22, 2016 @ 23:55 Late submission: Type

More information

Ministry of Higher Education and Scientific Research

Ministry of Higher Education and Scientific Research Morning Study Department of information technology Institute of Technical - Duhok. University of Polytechnic Duhok. Subject: Web Technology Course book for 2nd year. Lecturer s name: MSc. Ayman Nashwan

More information

Dreamweaver: Accessible Web Sites

Dreamweaver: Accessible Web Sites Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them.

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

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

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

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

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Web Programming and Design. MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh

Web Programming and Design. MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh Web Programming and Design MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh Plan for the next 5 weeks: Introduction to HTML tags Recap on HTML and creating our template file Introduction

More information

Produced by. Web Development. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology

Produced by. Web Development. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology Web Development Produced by Eamonn de Leastar (edeleastar@wit.ie) Department of Computing, Maths & Physics Waterford Institute of Technology http://www.wit.ie http://elearning.wit.ie CSS: Box Model Worked

More information

Certificate in Digital Applications

Certificate in Digital Applications Reference Material: Commentaries Certificate in Digital Applications Unit : Developing Web Products Sample Assessment Material Paper Reference: DA2/ Candidate B Examiner s notes on the work of Candidate

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 1 Web Development & Design Foundations with HTML5 CHAPTER 5 WEB DESIGN Copyright Terry Felke-Morris 2 Learning Outcomes In this chapter, you will learn how to... Describe the most common types of website

More information

Revision for Grade 7 ASP in Unit :1&2 Design & Technology Subject

Revision for Grade 7 ASP in Unit :1&2 Design & Technology Subject Your Name:.... Grade 7 - SECTION 1 Matching :Match the terms with its explanations. Write the matching letter in the correct box. The first one has been done for you. (1 mark each) Term Explanation 1.

More information

COMPUTER APPLICATIONS TECHNOLOGY: PAPER II

COMPUTER APPLICATIONS TECHNOLOGY: PAPER II NATIONAL SENIOR CERTIFICATE EXAMINATION NOVEMBER 2015 COMPUTER APPLICATIONS TECHNOLOGY: PAPER II Time: 3 hours 180 marks PLEASE READ THE FOLLOWING INSTRUCTIONS CAREFULLY 1. This question paper consists

More information

Produced by. Web Development. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology

Produced by. Web Development. Eamonn de Leastar Department of Computing, Maths & Physics Waterford Institute of Technology Web Development Produced by Eamonn de Leastar (edeleastar@wit.ie) Department of Computing, Maths & Physics Waterford Institute of Technology http://www.wit.ie http://elearning.wit.ie CSS: The Box Model

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

What do we mean by layouts?

What do we mean by layouts? What do we mean by layouts? A layout is how you position the elements of your page You can have columns Move paragraphs and sections around And you can do this all without changing the content of your

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model Unit 20 - Client Side Customisation of Web Pages Week 2 Lesson 4 The Box Model Last Time Looked at what CSS is Looked at why we will use it Used CSS In-line Embedded (internal style-sheet) External

More information

HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9

HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9 HIGHER Computing Science MADRAS COLLEGE St. Andrews Web Design & Development Ver 8.9 Contents Introduction What s included in this Booklet? 2 Page Web 1 Setting up the Pages for the Student Cooking Website

More information

Front-End UI: Bootstrap

Front-End UI: Bootstrap Responsive Web Design BootStrap Front-End UI: Bootstrap Responsive Design and Grid System Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

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

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 7 More on Links, Layout, and Mobile Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

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

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

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

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Comm 244 Week 3. Navigation. Navigation. Websites need a formalized system of links to allow users to navigate the site

Comm 244 Week 3. Navigation. Navigation. Websites need a formalized system of links to allow users to navigate the site Comm 244 Week 3 Navigation Navigation Websites need a formalized system of links to allow users to navigate the site Navigation Many larger websites have multiple forms of navigation For example, look

More information

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية HTML Mohammed Alhessi M.Sc. Geomatics Engineering Wednesday, February 18, 2015 Eng. Mohammed Alhessi 1 W3Schools Main Reference: http://www.w3schools.com/ 2 What is HTML? HTML is a markup language for

More information

Attributes & Images 1 Create a new webpage

Attributes & Images 1 Create a new webpage Attributes & Images 1 Create a new webpage Open your test page. Use the Save as instructions from the last activity to save your test page as 4Attributes.html and make the following changes:

More information

When you complete this chapter, you will be able to:

When you complete this chapter, you will be able to: Page Layouts CHAPTER 7 When you complete this chapter, you will be able to: Understand the normal fl ow of elements Use the division element to create content containers Create fl oating layouts Build

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

In this tutorial, we are going to learn how to use the various features available in Flexbox.

In this tutorial, we are going to learn how to use the various features available in Flexbox. About the Tutorial Flexbox (flexible box) is a layout mode of CSS3. Using this mode, you can easily create layouts for complex applications and web pages. Flexbox layout gives complete control over the

More information

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments.

The course also includes an overview of some of the most popular frameworks that you will most likely encounter in your real work environments. Web Development WEB101: Web Development Fundamentals using HTML, CSS and JavaScript $2,495.00 5 Days Replay Class Recordings included with this course Upcoming Dates Course Description This 5-day instructor-led

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

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

Style guide for Department for Education research reports and briefs

Style guide for Department for Education research reports and briefs Style guide for Department for Education research reports and briefs November 2013 Contents Introduction 3 Why accessibility matters 3 What are the standards? 3 Guidance on writing research reports and

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

Tutorial 3: Working with Cascading Style Sheets

Tutorial 3: Working with Cascading Style Sheets Tutorial 3: Working with Cascading Style Sheets College of Computing & Information Technology King Abdulaziz University CPCS-665 Internet Technology Objectives Review the history and concepts of CSS Explore

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information