Creating a Basic Web Page using HTML

Slides:



Advertisements
Similar presentations
HTML5, OVERVIEW AND NEW FEATURES PowerPoint by Mason O’Mara.
Advertisements

Neal Stublen Content Models  Metadata content Data not necessarily presented on the page ○ title, link, meta, style  Flow content.
XHTML Basics.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
HTML 5. What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in The web has changed.
HTML5 Fundamentals By RaedRASHEED 2015.
HTML 5 Tutorial Chapter 1 Introduction. What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML.
Lecture 18. HTML5 and JavaScript Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell Exploring the Internet,
Chapter 14 Introduction to HTML
HTML5. What is HTML5? HTML5 will be the new standard for HTML. HTML5 is the next generation of HTML. HTML5 is still a work in progress. However, the major.
Week 09, Session 01 Other HTML Tags & HTML5 IF Website Development Presented by: RDT.
HTML 5 New Standardization of HTML. I NTRODUCTION HTML5 is The New HTML Standard, New Elements New Attributes Full CSS3 Support Video and Audio 2D/3D.
SIG WEB January 31, 3PM. What is HTML5? What it is: Allows for better intergration of media consumption. A new open standard Provides new APIs.
Lesson 4: Using HTML5 Markup.  The distinguishing characteristics of HTML5 syntax  The new HTML5 sectioning elements  Adding support for HTML5 elements.
INTRODUCTION TO HTML5 HTML5 Page Structure. What is HTML5 ?  HTML5 will be the new standard for HTML, XHTML, and the HTML DOM.  The previous version.
The New Elements © Main Menu Structure Media Canvas Form Click on one of the categories below to view information about the new HTML5 elements in.
Proglan Session 1. .  HTML5 will be the new standard for HTML.  The previous version of HTML, HTML 4.01, came in The web has changed a lot since.
MIS 425 Lecture 3 – HTML 5 and CSS Instructor: Martin Neuhard
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
UPLOAD / DOWNLOAD april  HTML5 is just the next iteration of HTML  Previous version was technically HTML 4.01, which incorporated XHTML 1.0.
HTML5 Gaurav Jaiswal Singsys Pte. Ltd.. What is HTML5?
HTML5 Introduction to Web Programming. Plan of the course HTML5 Structure of a document Main HTML Tags –Headings –Paragraphs –Links –Tables –Forms –Images.
2.4. Choose and configure HTML5 tags to organize content and forms Choose and configure HTML5 tags for input and validation. Building the User Interface.
INT222 – Internet Fundamentals Week 8: Using New HTML features 1.
Becky Gibson Sr. Technical Staff Member IBM Emerging HTML5 Accessibility.
HTML5 Semantic
HTML Structure & syntax
HTML Structure & syntax
Chapter 9 HTML 5 Video and Audio
The HTML5 logo was introduced by W3C in 2010
Chapter 17 The Need for HTML 5.
Pertemuan 1 Desain web Pertemuan 1
Web Systems & Technologies
HTML 5.
HTML5 Basics.
Gaurav Jaiswal Singsys Pte. Ltd.
Introduction to HTML5.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Introduction to HTML5.
INTRODUCTION TO HTML AND CSS
PPT By:Gaurav Jaiswal Singsys Pte. Ltd.
XHTML Basics.
Chapter 4: HTML5 Media - <video> & <audio>
HTML 5 Tutorial Chapter 1 Introduction.
Application with Cross-Platform GUI
Chapter 3 Introduction to HTML5: Part 2
Introduction to HTML5.
XHTML Basics.
XHTML Basics.
Browser Support for HTML5
INTRODUCTION TO HTML AND CSS
HTML 5 Training HTML 5 SYMANTICS [Notes to trainer:
Ground to Roof HTML/HTML5
XHTML Basics.
Introduction to HTML5.
HTML 5 SEMANTIC ELEMENTS.
Giuseppe Attardi Università di Pisa
Pertemuan 1 Desain web Pertemuan 1
XHTML Basics.
HTML5 - 2 Forms, Frames, Graphics.
HTML Structure & syntax
Introduction to HTML5.
Web Client Side Technologies Raneem Qaddoura
HTML Tags and Structure
Web Programming and Design
HTML5 Tags By Dr Derek Peacock
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Creating a Basic Web Page using HTML Chapter 4 Creating a Basic Web Page using HTML

Design is not just what it looks like and feels like Design is not just what it looks like and feels like. Design is how it works – Steve Jobs

HTML5

What is HTML5 HTML5 is the new standard for HTML. The previous version of HTML was – HTML 4.01, came in 1999. HTML5 is designed to deliver almost everything you want to do online without requiring additional plugins. It does everything from animation to apps, music to movies, and can also be used to build complicated applications that run in your browser. HTML5 is also cross-platform (it does not care whether you are using a tablet or a smartphone, a notebook, notebook or a Smart TV).

Differences Between HTML4 and HTML5

Browser Support for HTML5 HTML5 is not yet an official standard, and no browsers have full HTML5 support. But all major browsers (Safari, Chrome, Firefox, Opera, Internet Explorer) continue to add new HTML5 features to their latest versions.

It is not case sensitive. <!DOCTYPE> <!doCTYpe> HTML5 Document In HTML5 there is only one <!doctype> declaration, and it is very simple: <!DOCTYPE html> It is not case sensitive. <!DOCTYPE> <!doCTYpe> <!docTYPE> <!DoctYPE> <!DOCtype> <!doCType>

Minimum HTML5 Document Below is a simple HTML5 document, with the minimum of required tags: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title of the document</title> </head> <body> Content of the document...... </body> </html>

New graphic elements: <svg> and <canvas>. New HTML5 Elements New semantic elements like <header>, <footer>, <article>, and <section>. New form control attributes like number, date, time, calendar, and range. New graphic elements: <svg> and <canvas>. New multimedia elements: <audio> and <video>.

You can also add any new element to HTML with a browser trick. This example adds a new element called <myHero> to HTML, and defines a display style for it:

An HTML5 Skeleton http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_html5_skeleton

New Semantic / Structural Elements Tag Description <article> Defines an article in the document <aside> Defines content aside from the page content <bdi> Defines a part of text that might be formatted in a different direction from other text <details> Defines additional details that the user can view or hide <dialog> Defines a dialog box or window <figcaption> Defines a caption for a <figure> element <figure> Defines self-contained content, like illustrations, diagrams, photos, code listings, etc. <footer> Defines a footer for the document or a section <header> Defines a header for the document or a section <main> Defines the main content of a document <mark> Defines marked or highlighted text <menuitem>  Defines a command/menu item that the user can invoke from a popup menu <meter> Defines a scalar measurement within a known range (a gauge) <nav> Defines navigation links in the document <progress> Defines the progress of a task <rp> Defines what to show in browsers that do not support ruby annotations <rt> Defines an explanation/pronunciation of characters (for East Asian typography) <ruby> Defines a ruby annotation (for East Asian typography) <section> Defines a section in the document <summary> Defines a visible heading for a <details> element <time> Defines a date/time <wbr> Defines a possible line-break

New Media Elements Tag Description <audio> Defines sound or music content <embed> Defines containers for external applications (like plug-ins) <source> Defines sources for <video> and <audio> <track> Defines tracks for <video> and <audio> <video> Defines video or movie content

THANKS! Any questions? You can find me at nurazila@unimap.edu.my 016 415 6936