HTML 5 SEMANTIC ELEMENTS.

Slides:



Advertisements
Similar presentations
Chapter 2 HTML Basics Key Concepts
Advertisements

MMDE5011 – INTERACTIVE MEDIA PRACTICE 1 WEEK 1: INTRODUCTION TO HTML5
New Semantic Elements (Part 2)
HTML5 new elements. The tag specifies independent, self- contained content. An article should make sense on its own and it should be possible to distribute.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Website Layouts Most websites have organized their content in multiple columns (formatted like a magazine or.
Neal Stublen A Basic Template  HTML doctype Much simpler than HTML4/XHTML  Title and meta content Again simpler than “Content-Type”
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
IPUB 100 Lesson 2 Instructor Mark Lamontagne Homework Review.
Building the User Interface by Using HTML5: Organization, Input, and Validation Lesson 3.
Lesson 4: Using HTML5 Markup.  The distinguishing characteristics of HTML5 syntax  The new HTML5 sectioning elements  Adding support for HTML5 elements.
HTML and CSS- Layout. HTML Layout Frame Table – Block HTML5 layout elements.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Website Layouts Most websites have organized their content in multiple columns (formatted like a magazine or.
Web Foundations MONDAY, SEPTEMBER 30, 2013 LECTURE 3: COMMON HTML TAGS, NEW HTML5 SECTIONS, USING FTP.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
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.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
INTRODUCTION TO HTML5 Semantic Layout in HTML5.  The new semantic layout in HTML5 refers to a new class of elements that is designed to help you understand.
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
HTML.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 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.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
Web programming Part 1: HTML 由 NordriDesign 提供
Today’s Lesson….. 1.Formative Assessment Given Back – Go through Answers. 2.Webpage Design.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
Session: 8. © Aptech Ltd. 2Creating Navigational Aids and Division-Based Layout / Session 8  Explain HTML5 semantic tags  Explain HTML5 semantic tag.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
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.
HTML5 Structure. Slide 2 Introduction Introduce the purpose of the new HTML5 semantic tags Introduce the HTML5 outlining mode Using semantic metadata.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Essential Questions What challenges do mobile devices present to Web designers? What are the basic concepts.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
HTML5 Semantic
Week 1: Introduction to HTML and Web Design
Basic concepts of web design
HTML CS 4640 Programming Languages for Web Applications
Web Systems & Technologies
Web Basics: HTML/CSS/JavaScript What are they?
Web Development & Design Foundations with HTML5 7th Edition
Web Page Elements Writing For the Web
Organizing Content with Lists and Tables
Web Development & Design Foundations with HTML5 8th Edition
Front End Development workshop
Elements of HTML Web Design – Sec 3-2
Concepts for fluid layout
Web Development & Design Foundations with HTML5 8th Edition
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
ITI 133 HTML5 Desktop and Mobile Level I
Styles and the Box Model
Laying out a website using CSS and HTML
HTML5 Level I Session II Chapter 3 - How to Use HTML to Structure a Web Page
“Semantic” Tags Semantic markup describes what the content contains as opposed to what it looks like! Examples include: div, nav, article, header, footer.
Lists, nesting, span/div
Web Development & Design Foundations with HTML5 8th Edition
What is HTML?.
Introduction to HTML5.
HTML What is Html? HTML stands for Hypertext Markup Language.
New Semantic Elements (Part 2)
Web Application Development
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
Concepts for fluid layout
Web Programming and Design
Various mobile devices
HTML5 Tags By Dr Derek Peacock
HTML CS 4640 Programming Languages for Web Applications
Presentation transcript:

HTML 5 SEMANTIC ELEMENTS

HTML INTRO HTML(Hypertext Markup Language) is the standard markup language for creating web pages and web applications. HTML elements are the building blocks of HTML pages. Original HTML had 20 tags and displayed simple text with basic markup for formatting.

HTML5 SEMANTICS ELEMENTS Semantics is the study of the meanings of words and phrases in a language. i.e. Semantic elements = elements with a meaning. A semantic element clearly describes its meaning to both the browser and the developer. Examples of semantic elements : <img> , <form> , <table> i.e. these elements define its contents clearly.

NON-SEMANTICS ELEMENTS Non-semantic elements generally tells nothing much about its content. Traditionally developers have implemented non-semantic elements with a class attribute to define the structure and express the meaning of content. Examples of non-semantics elements are : <div> and <span> i.e. these elements tells nothing about its content.

HTML4 AND HTML5 COMPARISON

SEMANTIC TAGS Semantic elements are used to clearly define different parts of a web page: <header> <nav> <section> <article> <aside> <footer> Many more...

Why Semantic Elements? HTML5 semantic elements help structure the code we create, and therefore making it more readable and easier to maintain.

HTML5 <header> ELEMENT The <header> element specifies a header for a document or a section. For introductory content <header> element should be used as container. We can have several <header> elements in one document.

HTML5 <footer> ELEMENT The <footer> element specifies a footer for a document or a section. A footer typically contains the author of the document, copyright information, links to terms of use, contact information, etc. We can have several <footer> elements in one document.

HTML5 <nav> ELEMENT The <nav> element define a set of navigation links. The <nav> element is intended for major block of navigation links.

HTML5 <section> ELEMENT "A section is a thematic grouping of content, typically with a heading." The <section> element defines a section in a document. Example: A home page could normally be divided into sections for introduction, content, and contact information.

HTML5 <aside> ELEMENT The <aside> element defines the content which is aside from the content it is placed in. Example: (like a sidebar)

HTML5 <article> ELEMENT The <article> element specifies independent, self-contained content. An article should make sense on its own, and it should be possible to read it independently from the rest of the web site. Examples of where an <article> element can be used: Blog post Newspaper article

For queries & information THANK YOU! For queries & information +91-9599444523 contactus@dignitasdigital.com