CH 3 Your First XML Document.  How to write and save simple XML documents  How to assign XML elements three kinds of meaning: structural, semantic,

Slides:



Advertisements
Similar presentations
Introduction to HTML & CSS
Advertisements

A really fairly simple guide to: mobile browser-based application development (part 1) Chris Greenhalgh G54UBI / Chris Greenhalgh
XSL eXtensible Stylesheet Language. What is XSL? XSL is a language that allows one to describe a browser how to process an XML file. XSL can convert an.
ICS-FORTH 1 May 22, 2001 Christos Georgis The extensible markup language: An introduction to XML What is a XML document ? How do we check its validity.
XML Unit 6 October 31. XML, review XML is used to markup data Used to describe information Uses tags like HTML –But all tags are user-defined –Must be.
Project 1 Introduction to HTML.
Tutorial 9 Working with XHTML
Tutorial 3: Adding and Formatting Text. 2 Objectives Session 3.1 Type text into a page Copy text from a document and paste it into a page Check for spelling.
XML Basics Hope Greenberg Center for Teaching & Learning.
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 12 Creating and Using XML Documents HTML5 AND CSS Seventh Edition.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
CGS3066: Web Programming and Design Summer 2014 Instructor Mir Anamul Hasan.
Cascading Style Sheets Part 1 Library and Information Services, University of St Andrews.
_______________________________________________________________________________________________________________ E-Commerce: Fundamentals and Applications1.
CSS Cascading Style Sheets By Garrett Garman. CSS Why use Style Sheets? Separates Appearance and Structure Modularity Quick and Easy changes Flexibility.
Today’s objectives  Complete web page  Using xhtml & CSS  Adding CSS to documents Embed url(File);  CSS.
NetTech Solutions Working with Web Elements Lesson 6.
Today’s objectives  Presentational | Inline | Block | Validate  CSS | Rules | Declarations.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
Css. Definition Cascading style sheet (CSS) Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.
Cascading Style Sheets Orientation Learning Web Design: Chapter 11.
XML About XML Things to be known Related Technologies XML DOC Structure Exploring XML.
 cascade Style Sheets (CSS) is a mark-up language that was first proposed in 1994 by Håkon Wium Lie. CSS works in conjunction with HTML to greatly increase.
IST 221 Internet Concepts and Applications Introduction to XML II CSS and XSLT Style Sheets.
XML eXtensible Markup Language. Topics  What is XML  An XML example  Why is XML important  XML introduction  XML applications  XML support CSEB.
Cascading Style Sheets Part 1. CSS vs HTML HTML: Originally intended to markup structure of a document (,...,,,,,...) CSS Developing technology, CSS1,
XHTML and CSS Session 1 Intro, (X)HTML, CSS, W3C, browsers, webpage, structure, tags, attributes, elements, web development process, basic XHTML elements.
Css. Definition Cascading style sheet (CSS)  It is a simple mechanism for adding style (e.g. fonts, colors, spacing) to Web documents.
Lesson 15: Cascading Style Sheets. Objectives Identify ways to apply Web page formatting with Cascading Style Sheets (CSS1 and CSS2) using various methods.
Cascading Style Sheets
Unit 5 - Cascading Style Sheets (CSS) XML - Level I Basic.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
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.
Adding markup instructions to documents is not new. Before computers, authors would make annotations by hand in their written or typed documents. These.
NASRULLAHIBA.  It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and.
1 ITEC 4830 Graphics Design Chapter 1 Dreamweaver MX 2004 Basics.
CH 12 CSS Style Sheets 1. Objective What is CSS? Selecting elements Different rules for different media Importing style sheets 2.
Chapter 6 Introducing Cascading Style Sheets Principles of Web Design, Third Edition.
What is CSS? A set of style rules that tell the web browser how to present a web page or document. – In earlier versions of HTML, style characteristics,
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.
CSS (Cascading Style Sheets). CSS CSS – Cascading Style Sheets – Cascade because of the way CSS rules can stack on top of each other. Allows you to add.
Introduction to latest Web Technologies Master Software Solutions Pvt. Ltd.
Web Basics: HTML/CSS/JavaScript What are they?
Project 1 Introduction to HTML.
Getting Started with CSS
Tutorial 9 Working with XHTML
Tutorial 04 (cont’) Using XPath Patterns in an XSLT Style Sheet.
Chapter 1 Introduction to HTML.
Project 1 Introduction to HTML.
Intro to CSS CS 1150 Fall 2016.
Introduction to web design discussing which languages is used for website designing
Chapter 1 HTML, XHTML, and the World Wide Web
Prepared for Md. Zakir Hossain Lecturer, CSE, DUET Prepared by Miton Chandra Datta
Cascading Style Sheets - Building a stylesheet
Intro to CSS CS 1150 Spring 2017.
Chapter 1 HTML, XHTML, and the World Wide Web
Introduction to Web Page Design
Cascading Style Sheets™ (CSS)
Introduction to HTML5.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
Introduction to Web Application Design
Cascading Style Sheets - Building a stylesheet
Presentation transcript:

CH 3 Your First XML Document

 How to write and save simple XML documents  How to assign XML elements three kinds of meaning: structural, semantic, and stylistic  How to write a CSS style sheet that tells browsers how to display particular elements  How to attach a CSS style sheet to an XML document with an xml-stylesheet processing instruction  How to load XML documents into a web browser Objective

 Learn how to create your first simple XML  You learn which tools and software you can use to edit and save an XML document  You also learn to write a style sheet for the document that describes how the content of those tags should be displayed Your First XML Document

 Creating a simple XML document Hello XML!  save it in a file called  Loading the XML file into a web browser hello.xml Hello XML

 Markup indicate three kinds of meaning 1.Structural – Specifies relationship between the diff element in the document 2.Semantic – related the individual elements to the real world 3.Stylistic – Specifies how an element is diplay Meaning in Markup

 GREETING {display: block; font-size: 24pt; font-weight: bold} Hello XML! Writing a Style Sheet for an XML Document Save in file as greeting.xsl