Chapter 13 Web Editing © 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website,

Slides:



Advertisements
Similar presentations
Objective Understand web-based digital media production methods, software, and hardware. Course Weight : 10%
Advertisements

Project 1 Introduction to HTML.
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
CIS101 Introduction to Computing Week 05. Agenda Your questions CIS101 Survey Introduction to the Internet & HTML Online HTML Resources Using the HTML.
Multimedia for the Web: Creating Digital Excitement HTML, XHTML and Web Authoring.
Introduction to HTML 2006 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2006 INT197B. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2004 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
Chapter 1 Understanding the Web Design Environment
Developing a Basic Web Page with HTML
1st Project Introduction to HTML.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
Chapter ONE Introduction to HTML.
Chapter 1 Variables in the Web Design Environment.
Chapter 1 Variables in the Web Design Environment
© 2011 Delmar, Cengage Learning Chapter 2 Developing a Web Page.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
CS 299 – Web Programming and Design Introduction to HTML.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
1 Web Basics Section 1.1 Compare the Internet and the Web Compare Web sites and Web pages Identify Web browser components Describe types of Web sites Section.
Chapter 1 Understanding the Web Design Environment Principles of Web Design, 4 th Edition.
Week 1 Understanding the Web Design Environment. 1-2 HTML: Then and Now HTML is an application of the Standard Generalized Markup Language Intended to.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
XHTML By Trevor Adams. Topics Covered XHTML eXtensible HyperText Mark-up Language The beginning – HTML Web Standards Concept and syntax Elements (tags)
Group 3: Art Gallery Monica Almendarez Content/Project Manager Willliam Egle Technology Manager Christina Pié Usability/ADA Compliance Manager Mirjana.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
Writing Your Own Web Page: Using HTML and FrontPage Chapter 10.
HTML HyperText Markup Language Victoria E. Kozlek.
Understanding Web-Based Digital Media Production Methods, Software, and Hardware Objective
Introduction. Internet Worldwide collection of computers and computer networks that link people to businesses, governmental agencies, educational institutions,
HTML PROJECT #1 Project 1 Introduction to HTML. HTML Project 1: Introduction to HTML 2 Project Objectives 1.Describe the Internet and its associated key.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
4.01 How Web Pages Work.
Getting Started With HTML
4.01 How Web Pages Work.
HTML Basics.
4.01 How Web Pages Work.
Project 1 Introduction to HTML.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Chapter 1 Introduction to HTML
Chapter 1 Introduction to HTML.
Chapter 2 Developing a Web Page.
Creating a Home Page in HTML
Project 1 Introduction to HTML.
Objectives Overview Discuss tools for creating a website, such as text editors, code editors, and content management systems, and when to use each Explain.
Introduction to XHTML.
HTML Vocabulary.
Web Programming– UFCFB Lecture 9
Objective % Explain concepts used to create websites.
Objective Understand web-based digital media production methods, software, and hardware. Course Weight : 10%
Unit A.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Teaching slides Chapter 6.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Objective Explain concepts used to create websites.
Web Programming– UFCFB Lecture 9
4.01 How Web Pages Work.
4.01 How Web Pages Work.
4.00 Apply procedures to add content by using Dreamweaver. (22%)
Presentation transcript:

Chapter 13 Web Editing © 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.

Lessons Lesson 13.1: HTML and Coding Lesson 13.2: Ensuring Universal Access Digital Media, 3e

Learning Outcomes 13.1 Describe the functions of HTML 13.2 Write correct HTML code 13.3 Explain key features of Web editors 13.4 Explain how Web developers meet the needs of universal access 13.5 Explain the differences between HTML and XHTML 13.6 Explain the principles of well-formed code 13.7 Explain how to validate code Digital Media, 3e

HTML and Coding HTML (HyperText Markup Language) is the code used to create Web pages A browser is a computer program that allows you to view Web pages No matter which hardware or browser you are using, all Web pages will be displayed in a largely similar way HTML files do not have quite the universal constancy of PDF files All Web browsers do not show Web pages in exactly the same way Digital Media, 3e

Inside HTML HTML is a simple code designed to translate text and graphics into a viewable page A tag is an HTML code used to identify an element in an HTML file and instruct browsers on how and where to display the element Each code (usually written in lower case letters) is enclosed in angle brackets (the characters < and >) Digital Media, 3e

Inside HTML (continued) HTML Basics Web pages begin with an opening <html> tag The page then goes to the <head> The next element is the <title> and </title> Many tags appear in pairs The start tag is the first tag in a pair; also called opening tag The end tag is the second tag in a pair; also called closing tag Digital Media, 3e

Inside HTML (continued) HTML Basics (cont.) An element is a unit of a Web page, defined by start and end tags Elements include the head, the title, the body, headings, paragraphs, and bulleted lists One element can contain several others An attribute is a part of a tag that further describes or defines an element, which consists of the attribute type and a value for that attribute Appear in the start tag only Are written in the form attribute name=“value” Empty elements are elements that do not have any content Digital Media, 3e

Inside HTML (continued) Common HTML Tags HTML has dozens of tags, and they cover a broad range of functions Digital Media, 3e

Inside HTML (continued) Learn by Copying One way to learn HTML tagging is to examine source code Begin with pages that are relatively simple so you do not get too confused Focus on just one section of a page at a time so you can better understand the code and its effects Study the codes in conjunction with the text, images, and other design features on a Web site to begin to understand the effects of various codes By understanding the effects created by different codes, you can design pages using the tags you want Another approach to learning HTML is to use online tutorials Digital Media, 3e

The Ethics of Copying Code How much code can you “borrow” before it is no longer your page? Is it important to give credit for innovative techniques? Does this borrowing hinder or encourage development of new ideas? What do you think? Digital Media, 3e

Web Editing Software A Web editor is computer software that creates HTML code automatically as part of the Web design process You can also write code in a simple text editor or a word processing program Writing HTML in a text editor or word processing program lets you focus on the code so you gain a better understanding of the code Digital Media, 3e

Web Editing Software (continued) Different Ways of Viewing a Site One advantage of using Web editing software is that it provides a WYSIWYG (What You See Is What You Get) interface Most Web editors have two panels: one displaying the text and codes and the other showing how it will appear in a browser Digital Media, 3e

Web Editing Software (continued) Features of Web Editors Web editors provide tools to create many different effects, including these commonly used ones: Page backgrounds using color or images Text in different sizes and colors Wraparound text and other special effects Graphics including horizontal rules, bulleted lists, rollover images, and image maps Drop-down menus, option buttons, and forms that users can fill out Links to other pages A vital feature is the ability to conduct compatibility checks with different browsers Digital Media, 3e

Web Editing Software (continued) Features of Web Editors (cont.) Consider these features in evaluating a Web editor: Templates Media Interactive elements XHTML, CSS, and JavaScript Tables Digital Media, 3e

Obstacles to Universal Access There are access limitations that stem from the varying capabilities of three features connected with how people access the Internet: The display screen being used The speed of the computer and the Internet connection The browser being used A special issue is the question of smartphones or mobile Web browsing The issue of accessibility for people with disabilities is also important to consider in Web design. Digital Media, 3e

Obstacles to Universal Access (continued) Display Challenging to design a Web page that will appear exactly as you anticipate Some computers have larger display screens than others Some displays will not have the same fonts as yours Some will not be able to display as many colors as yours Following these principles will help minimize display-related problems: Design the Web page for an 800 × 600 (width by depth) pixel resolution Avoid font issues by choosing common fonts and specifying optional fonts that are similar to each other Digital Media, 3e

Obstacles to Universal Access (continued) Download Speed Download speed depends on both the speed of the user’s computer and of his or her Internet access Follow these guidelines to develop faster Web sites: Keep the overall file size of each Web page relatively small Keep images small and compressed Include music, video, and animation only if they are essential to your purpose Run error checks on HTML code and CSS styles Avoid placing tables within tables Use a host computer that is as fast as possible Digital Media, 3e

Obstacles to Universal Access (continued) Browser Some compatibility issues are related to browser software Some functions or formatting commands are not available in all browsers The Web editor may help you by indicating if a particular function is not available to all browsers The browser compatibility check can help resolve issues Mobile Devices Display, download speed, and browser type are all factors in the use of smartphones for Web browsing Smartphones cannot display as much text as can be seen on a computer screen Digital Media, 3e

Obstacles to Universal Access (continued) Accessibility Many Web users have various disabilities such as impaired vision, difficulty hearing, or color-blindness Designing a Web page with these individuals in mind is considered a standard for good Web design World Wide Web Consortium (W3C) is an organization that sets standards for the World Wide Web, including such issues as privacy, markup languages, styles, and other issues Web Content Accessibility Guidelines (WCAG ) are accessibility standards set by the WC3 for Web developers to follow in order to make Web sites accessible to individuals with disabilities Digital Media, 3e

Ensuring Access by Using XHTML XHMTL is a markup language similar to HTML but with stricter requirements Well-formed code is formatting code that meets the quality standards of the coding system To validate is to check the code used to generate Web pages to make sure it meets quality standards Digital Media, 3e

Naming and Uploading a Web Site A Web server is a computer used to store Web pages so that browsers can access them The domain name is the unique name for a Web site, which becomes part of the site’s URL and which must be formally registered Hacking is the unauthorized modification of a Web site, usually in ways that distort the original purpose of the site or seek to harm the site’s owner FTP (File Transfer Protocol) is a communications protocol used to transfer files from one computer to another over a network; FTP is often used to upload Web pages to a Web server Digital Media, 3e

Key Concepts HTML (Hypertext Markup Language) is the code that identifies what and how content will be displayed on Web pages; Web browsers interpret HTML tags to show Web pages Certain tags are needed to mark the beginning and end of the document in HTML; the content of the Web page is contained within the two codes <body> and </body> The body of a document is composed of any number of elements, each of which may be further described by attributes; some attributes are themselves characterized by values One way to learn HTML code is by copying the code from Web pages that have design elements you like; browsers make it possible to reveal the source code underlying the page Digital Media, 3e

Key Concepts (continued) Web editors are software programs that make it possible to write HTML code or to create Web pages in a WYSIWYG format; a key feature is balancing the ability to design a variety of elements while maintaining ease of use How a Web page is displayed depends not only on how it is designed but also on the type of device on which the page is being viewed, the speed of the computer and Internet access of the user, and the type of browser Web developers can take steps to minimize the variations in loading speed and in the appearance of their Web pages to try to minimize these barriers to access Digital Media, 3e

Key Concepts (continued) The proliferation of smartphones and other mobile browsing devices raises other questions since the display on these devices is very small compared to that of a computer The World Wide Web Consortium (W3C) recommends various practices for making it possible for individuals with disabilities to have access to Web content The W3C also recommends that Web developers adopt XHTML to code Web documents in order to make their display more standard across different browsers and devices Digital Media, 3e