Web Development & Design Foundations with HTML5 8th Edition

Slides:



Advertisements
Similar presentations
Web Development & Design Foundations with XHTML
Advertisements

1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
Upgrading to XHTML DECO 3001 Tutorial 1 – Part 1 Presented by Ji Soo Yoon 19 February 2004 Slides adopted from
HTMLMR.Mostafa badr1. Lesson 3 HTML Tags Lesson 2 Creating a HTML File Lesson 1: Hyper Text Markup Language (HTML) Basics Get Trained for a Better Future.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. Revised 1/12/2015 by William Pegram 1.
HTML Structure & syntax
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
1 HTML intro The development of HTMLThe development of HTML The transition from HTML to XHTMLThe transition from HTML to XHTML XHTML syntax, tags, and.
1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.
>> 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.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Codes Miss B.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Creating XHTML Documents Essentials for.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
HTML/XHTML By Joaquin Vila. What is HTML? HTML stands for HyperText Markup Language. HTML documents are cross-platform compatible and device-independent.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
Objective: To describe the evolution of the Internet and the Web. Explain the need for web standards. Describe universal design. Identify benefits of accessible.
CIS 228 The Internet 9/20/11 XHTML 1.0. “Quirks” Mode Today, all browsers support standards Compliant pages are displayed similarly There are multiple.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
INT222 – Internet Fundamentals
Intro to HTML.  Hypertext markup language (HTML) is a way of telling web browsers how to display a page  You can type them by hand in a word processing.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML Structure & syntax
HTML Structure & syntax
Basic HTML Introduction to HTML.
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
HTML Extra Markup CS 1150 Spring 2017.
HTML5 Basics.
CIS 228 The Internet 9/20/11 XHTML 1.0.
Web Development & Design Foundations with HTML5 8th Edition
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Web Development & Design Foundations with HTML5 8th Edition
Mansoor Ahmed Bughio.
Coding, Testing and Valdating a Web Page
XHTML Basics.
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Basic HTML PowerPoint How Hyper Text Markup Language Works
Intro to Web Development Class A Review
Introduction to HTML5.
Basic HTML PowerPoint How Hyper Text Markup Language Works
XHTML Basics.
XHTML Basics.
Basics of Web Design Chapter 1 Internet & Web Basics Key Concepts
Intro to Web Development HTML Structure
Intro to Web Development Links
Introduction to HTML5.
HTML Basic Structure.
HTML Structure.
XHTML Basics.
Introduction to HTML5.
Web Application Development
Basic HTML Workshop.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
XHTML Basics.
HTML Structure & syntax
Introduction to HTML5.
Basics of Web Design Chapter 1 Internet & Web Basics Key Concepts
HTML Introduction.
Creating Web Documents
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Web Development & Design Foundations with HTML5 8th Edition Chapter 2 Key Concepts Copyright © Terry Felke-Morris

What is HTML? HTML: The set of markup symbols or codes placed in a file intended for display on a Web browser page. The World Wide Web Consortium (http://w3c.org) sets the standards for HTML and its related languages.

HTML Elements Each markup code represents an HTML element. Each element has a purpose. Most elements are coded as a pair of tags: an opening tag and a closing tag. Tags are enclosed in angle brackets, "<" and ">" symbols.

What is HTML5 ? Newest version of HTML/XHTML Supported by modern browsers Intended to be backwards compatible Adds new elements Adds new functionality Edit form data Native video and audio And more! Source: W3C http://www.w3.org/html/logo/

Document Type Definition Document Type Definition (DTD) doctype statement identifies the version of HTML contained in your document. placed at the top of a web page document

DTD Examples HTML5 DTD XHTML 1.0 Transitional DTD <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd> HTML5 DTD <!DOCTYPE html>

Example HTML5 Web Page <!DOCTYPE html> <html lang="en"> <head> <title>Page Title Goes Here</title> <meta charset="utf-8"> </head> <body> ... body text and more HTML5 tags go here ... </body> </html>

Head & Body Sections Head Section Contains information that describes the web page document <head> …head section info goes here </head> Body Section Contains text and elements that display in the web page document <body> …body section info goes here </body>

Title Element Meta Element