Web Development & Design Foundations with H T M L 5

Slides:



Advertisements
Similar presentations
Web Development & Design Foundations with HTML5
Advertisements

Web Development & Design Foundations with XHTML
Chapter 2 HTML Basics Key Concepts
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Basics of Web Design 1 Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5 7th Edition
Coding, Testing and Valdating a Web Page
Web Development & Design Foundations with H T M L 5
Trigonometry Second Edition Chapter 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Thinking Mathematically
Thinking Mathematically
Acute Angles and Right Triangles
Thinking Mathematically
Introduction to Calculus
Thinking Mathematically
Introduction to Calculus
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Thinking Mathematically
Trigonometric Functions
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Lial/Hungerford/Holcomb: Mathematics with Applications 10e
A Survey of Mathematics with Applications
Thinking Mathematically
Presentation transcript:

Web Development & Design Foundations with H T M L 5 Ninth Edition Chapter 2 H T M L Basics Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links by using INSERT+F7 If this PowerPoint presentation contains mathematical equations, you may need to check that your computer has the following installed: 1) MathType Plugin 2) Math Player (free versions available) 3) NVDA Reader (free versions available) Copyright © 2019, 2017, 2015 Pearson Education, Inc. All Rights Reserved

Heading Element <h1>Heading Level 1</h1> <h2>Heading Level 2</h2> <h3>Heading Level 3</h3> <h4>Heading Level 4</h4> <h5>Heading Level 5</h5> <h6>Heading Level 6</h6>

Hands-on practice 2.2 (Page 34) chapter2/heading.html

Paragraph Element Paragraph element <p> …paragraph goes here… </p> Groups sentences and sections of text together. Block Display – Configures empty space above and below

Hands-on practice 2.3 (Page 36) chapter2/paragraph.html

Line Break Element Line Break element Stand-alone, or void tag …text goes here <br> This starts on a new line…. Causes the next element or text to display on a new line

Hands-on practice 2.4 (page 37) chapter2/linebreak.html

Blockquote Element Blockquote element <blockquote> Indents a block of text for special emphasis <blockquote> …text goes here… </blockquote> Block Display – Configures empty space above and below

Hands-on practice 2.5 (page 38) chapter2/blockquote.html

Div Element Configures a structural block area or “division” on a web page with empty space above and below. Can contain other block display elements, including other div elements <div>Home Services Contact</div>

H T M L 5 Structural Elements (1 of 2)

H T M L 5 Structural Elements (2 of 2)

Hands-on practice 2.10 (page 49) chapter2/structure.html