Authoring Languages and Web Authoring Software 4.01 Examine web page development and design.

Slides:



Advertisements
Similar presentations
3.02D HTML Overview 3.02 Develop webpages.
Advertisements

3.02B Authoring Languages 3.02 Develop webpages..
ASP.NET Intro An introduction to the languages and communication of an ASP.NET system.
Getting a Taste of Cascading Stylesheets Steve Mooradian December 14, 2005.
Standards and Increasing Maintainability on Web- based Systems James Eaton SE4112/16/2006.
Web Pages and Style Sheets Bert Wachsmuth. HTML versus XHTML XHTML is a stricter version of HTML: HTML + stricter rules = XHTML. XHTML Rule violations:
Understand Web Page Development Software Development Fundamentals LESSON 4.1.
Project 1 Introduction to HTML.
Multimedia for the Web: Creating Digital Excitement HTML, XHTML and Web Authoring.
1st Project Introduction to HTML.
4.01B Authoring Languages and Web Authoring Software 4.01 Examine webpage development and design.
What is Web Design The term “web design” has come to encompass a number of disciplines, including: Visual (graphic) design User interface and experience.
© Ms. Masihi 1.  A web page is created using a language called, Hypertext Markup Language, better known as HTML Code.  HTML is a user friendly language.
Chapter 14 Introduction to HTML
1 Lesson 1 Quick HTML Know-How HTML and JavaScript BASICS, 4 th Edition Barksdale / Turner.
HTML 1 Introduction to HTML. 2 Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key terms.
Chapter ONE Introduction to HTML.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Overview of HTML. Three Different Approaches  Text editor like Notepad  HTML editor such as: –KompoZer –DreamWeaver –Microsoft Expression Web –iWeb.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
Creating a Basic Web Page
Multimedia and the Web Chapter Overview  This chapter covers:  What Web-based multimedia is  how it is used today  advantages and disadvantages.
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: –The head content –The body Creating Head Content and Setting Page Properties.
10 Adding Interactivity to a Web Site Section 10.1 Define scripting Summarize interactivity design guidelines Identify scripting languages Compare common.
The Internet and the World Wide Web. The Internet A Network is a collection of computers and devices that are connected together. The Internet is a worldwide.
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
Overview of HTML/XHTML Two Different Approaches  Text editor like Notepad  HTML editor such as: –KompoZer –DreamWeaver –Microsoft Expression Web –iWeb.
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: – The head content – The body Creating Head Content and Setting Page.
Introduction to web development and HTML MGMT 230 LAB.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
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.
TOPIC II Dynamic HTML Prepared by: Nimcan Cabd Cali.
Web Terminology Intro to Web. North Lake College 2 by Sean Griffin HTML vs. XHTML HTML: Hypertext Markup Language XHTML: eXtensible Hypertext Markup Language.
HTML Overview Part 5 – JavaScript 1. Scripts 2  Scripts are used to add dynamic content to a web page.  Scripts consist of a list of commands that execute.
4.01B Authoring Languages and Web Authoring Software 4.01 Examine webpage development and design.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
HTML HyperText Markup Language Victoria E. Kozlek.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
Learning Aim C.  In this section we will look at how text, tables, forms and frames can be used in web pages.
Cascading Style Sheet CSS Closing Switch Closing Tag Code View
Learning Aim C.  Creating web pages involves many considerations.  In this section we will look at the different software tools you can use and how.
1 ITEC 4830 Graphics Design Chapter 1 Dreamweaver MX 2004 Basics.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Microsoft Expression Web - Illustrated Unit A: Getting Started With Microsoft Expression Web.
Web Design Principles 5 th Edition Chapter 3 Writing HTML for the Modern Web.
Web Page Programming Terms. Chapter 1 Objectives Describe Internet and Understand Key terms Describe World Wide Web and its Key terms Identify types and.
Web Basics: HTML/CSS/JavaScript What are they?
Project 1 Introduction to HTML.
4.01B Authoring Languages and Web Authoring Software
Chapter 1 Introduction to HTML.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Project 1 Introduction to HTML.
The Internet and HTML Code
3.02B Authoring Languages 3.02 Develop webpages..
Unit 2, Lesson 5 Website Development Tools
Section 10.1 YOU WILL LEARN TO… Define scripting
Unit 2, Lesson 5 Website Development Tools
Markup Languages -Use codes, called tags, to provide instructions about formatting and structure of a website HTML (Hypertext Markup Language) Must be.
4.01B Authoring Languages and Web Authoring Software
Web Page Development Tools
3.02B Authoring Languages 3.02 Develop webpages..
What is HTML?.
Web Page Development Tools
Markup Languages -Use codes, called tags, to provide instructions about formatting and structure of a website HTML (Hypertext Markup Language) Must be.
Presentation transcript:

Authoring Languages and Web Authoring Software 4.01 Examine web page development and design.

Authoring Languages  Used to control the appearance and functionality of web pages when displayed in a browser  Examples include:  HTML (HyperText Markup Language)  XML (eXtensible Markup Language)  XHTML (eXtensible HTML)  Java Applets

HTML HyperText Markup Language  First and still primary language for developing web pages/sites  Uses codes, or tags, to instruct the browser how to display text and images  Treats all data the same— for display only Example of HTML code Student Website Welcome to my website!

XML eXtensible Markup Language  Describes data types to facilitate data processing  Designed to carry data, not to display it  Uses author-defined tags to identify each data entry so that the data can be easily imported into other applications  Metadata—data about data Example of XML code Atlanta Georgia 75

XHTML eXtensible HyperText Markup Language  Combination of HTML and XML  Allows designer to mix HTML and XML so that browsers can display and manage data correctly  Aimed to replace HTML as dominant authoring language  Places restrictions on HTML tags so that code is cleaner and can display data as author intended  Requires all HTML tag sets be closed  Requires lowercase tags  Many devices can’t interpret bad HTML code (mobile phones, PDAs)

Java Applets  Short programs written in Java code  Added to basic HTML and XHTML  Add multimedia, animation, gaming, and other interactive elements to add interest to the page

Presentation and Scripting Languages  CSS (Cascading Style Sheets)  JavaScript

CSS Cascading Style Sheets  Separates content from appearance and gives web authors more control over layout and page format  CSS code instructs the Web browser how to format each item. h1 {color: #00ff00} h2 {color: #dda0dd} p {color: rgb(0,0,255)} This is header 1 This is header 2 This is a paragraph

Pros and Cons of CSS Advantages  One style sheet can control the formatting for multiple web pages. An entire web site can be reformatted by editing one CSS file.  Styles can also be set internally. The CSS is in the header of the html document. Disadvantage  May alter the ability of some devices to accurately read and display information.

JavaScript  An object based scripting language that allows creation and execution procedures within a web page  Does not require plug-ins (additional programs for the user to install)  Widely supported by most browsers  JavaScript example displays this dialog box in the browser window: JavaScript Example var foo="Greetings, visitor!"alert(foo);

Web Authoring Software There are several web authoring software solutions available for authoring and managing web sites. Two major solutions are Microsoft Expression Web2 and Adobe Dreamweaver CS4. Web site hosts also provide proprietary web software authoring solutions for managing their sites.

Web Authoring Software  Microsoft Expression Web2 (replaces Microsoft FrontPage) Overview.aspx?key=web  Adobe Dreamweaver CS4