XHTML TAGS I Basic Tags. North Lake College 2 by Sean Griffin Sample XHTML Code.

Slides:



Advertisements
Similar presentations
Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
Advertisements

HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
HTML popo.
XHTML Week Two Web Design. 2 What is XHTML? XHTML is the current standard for HTML Newest generation of HTML (post-HTML 4) but has many new features which.
Dr. Alexandra I. Cristea XHTML.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
A really fairly simple guide to: mobile browser-based application development (part 1) Chris Greenhalgh G54UBI / Chris Greenhalgh
HTML/XML XHTML Authoring. Creating Tables  Table: An arrangement of horizontal rows and vertical columns. The intersection of a row and a column is called.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Tutorial 9 Working with XHTML
XHTML 16-Apr-17.
HTML and XHTML Controlling the Display Of Web Content.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Markup Languages Controlling the Display Of Web Content.
17-Jun-15 XHTML 2 What is XHTML? XHTML stands for Extensible Hypertext Markup Language XHTML is aimed to replace HTML.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
F DIGITAL MEDIA: COMMUNICATION AND DESIGN INTRODUCTION TO XML AND XHTML.
Introducing XHTML: Module B: HTML to XHTML. Goals Understand how XHTML evolved as a language for Web delivery Understand the importance of DTDs Understand.
Basics of HTML.
Define html document byusing Example : Title of the document The content of the document......
Creating a Basic Web Page
ULI101 – XHTML Basics (Part II) What is Markup Language? XHTML vs. HTML General XHTML Rules Block Level XHTML Tags XHTML Validation.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
CS134 Web Design & Development Creating a Basic Web Page Mehmud Abliz.
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
Introduction. Document Structure Overview  XML declaration (prolog)  Document type declaration  Root element (namespace)  Document header  Document.
1 XHTML محمد احمدی نیا 2 Of 19 HTML vs XHTML  XHTML is a stricter and cleaner version of HTML.  by combining the strengths of HTML.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
XHTML. Introduction to XHTML What Is XHTML? – XHTML stands for EXtensible HyperText Markup Language – XHTML is almost identical to HTML 4.01 – XHTML is.
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 9: Working With XHTML.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
Just Enough HTML How to Create Basic HTML Documents.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML: Hyptertext Markup Language Doman’s Sections.
1 Web Application Programming Presented by: Mehwish Shafiq.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
Web Terminology Intro to Web. North Lake College 2 by Sean Griffin HTML vs. XHTML HTML: Hypertext Markup Language XHTML: eXtensible Hypertext Markup Language.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Web programming Part 1: HTML 由 NordriDesign 提供
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
XP Tutorial 9New Perspectives on HTML and XHTML, Comprehensive 1 Working with XHTML Creating a Well-Formed Valid Document Tutorial 9.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
Basic HTML Document Structure. Slide 2 Goals (XHTML HTML5) XHTML Separate document structure and content from document formatting HTML 5 Create a formal.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML Basic Structure. Page Title My First Heading My first paragraph.
INT222 – Internet Fundamentals
Hyper Text Markup Language.  My First Heading My first paragraph. Example Explained The DOCTYPE declaration defines the document type The text between.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
TNPW1 Ing. Jiří Štěpánek.  Tags  Marks for elements ▪ Pair ▪ Start and end tag ( Paragraph text ) ▪ Single ▪ Only start tag, according to XHTML 1.0.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Web Basics: HTML/CSS/JavaScript What are they?
Tutorial 9 Working with XHTML
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
HTML Vocabulary.
HTML.
Basic HTML and Embed Codes
Creating a Basic Web Page
Web Design & Development
Presentation transcript:

XHTML TAGS I Basic Tags

North Lake College 2 by Sean Griffin Sample XHTML Code

North Lake College 3 by Sean Griffin XHTML Code Deconstructed (1) 1. XML Declaration: This line identifies this document as an XHTML document. 2. Document Type Definition (DTD): Points to a URL that outlines elements, attributes and their usage. There are three types of DTD’s:  Transitional: XHTML, HTML 4.0 and old browser compatible.  Strict: uses XHTML elements only.  Frameset: allows access to the HTML frameset tags.

North Lake College 4 by Sean Griffin XHTML Code Deconstructed (2) 3. tag & Namespace: The tag really marks the start of our web page. This tag also contains a URL which points to a file that gives detailed information about the particular XML vocabulary, which is XHTML in our case.

North Lake College 5 by Sean Griffin XHTML Code Deconstructed (3) 4. tag: contains all of the header information. Ex: Keywords are enclosed inside the tag. These are the keywords that help you find useful pages when you perform a Google search. We’ll learn more about this later.

North Lake College 6 by Sean Griffin XHTML Code Deconstructed (5) 5 & 6. tag: The tag must be enclosed inside the tags. The text between the tags will appear in the browser’s title bar.

North Lake College 7 by Sean Griffin XHTML Code Deconstructed (6) 8 & 9. tag: all of your visible content will be placed within this tag including: Images: jpg, gif, png Media: video, Flash Tables Text Etc.

North Lake College 8 by Sean Griffin The Most Basic Page Hello World! Hello World!

North Lake College 9 by Sean Griffin Let’s add the following Tags : adds comments to your page. These do not appear on the page when viewed in the browser. through : creates a header : creates a paragraph : the emphasis tag – like italic : creates bold text : break tag – like a line break

North Lake College 10 by Sean Griffin Add a Comment To It! Hello World! Hello World!

North Lake College 11 by Sean Griffin Add a Header… Hello World! Hello World!

North Lake College 12 by Sean Griffin Add a Paragraph… Hello World! Hello World! This is a paragraph.

North Lake College 13 by Sean Griffin Add Emphasis… Hello World! Hello World! This is a paragraph.

North Lake College 14 by Sean Griffin Add Strong… Hello World! Hello World! This is a paragraph.

North Lake College 15 by Sean Griffin Add a Break… Hello World! Hello World! This is a paragraph. This is a line This is another line.