HOW PAGES USE STRUCTURE HEADLINE HOW PAGES USE STRUCTURE TEXT.

Slides:



Advertisements
Similar presentations
Web Page Development Identify elements of a Web Page Start Notepad
Advertisements

CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Structure & syntax
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.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Basic HTML PowerPoint How Hyper Text Markup Language Works
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
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.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Text Building a Website Lesson 3. Headings,,,,, Headings,,,,, HTML has 6 levels of headings,,,,,,,,,, is used for main headings is used for main headings.
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML Basic Structure. Page Title My First Heading My first paragraph.
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.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML Structure & syntax
Basic HTML Introduction to HTML.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Pertemuan 1 Desain web Pertemuan 1
HTML Extra Markup CS 1150 Spring 2017.
Fall 2016 CSULA Saloni Chacha
Intro to HTML CS 1150 Spring 2017.
INTRO TO WEB DEVELOPMENT html
Intro to HTML CS 1150 Fall 2016.
Transcriptions Studio Workshop Fall 2006
XHTML/CSS Week 1.
Introduction to basic HTML
Essential Tags Web Design – Sec 3-3
Elements of HTML Web Design – Sec 3-2
Mansoor Ahmed Bughio.
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.00cs HTML Overview 3.00cs Develop webpages.
Essential Tags Web Design – Sec 3-3
Text Elements.
Intro to CSS CS 1150 Fall 2016.
Elements of HTML Web Design – Sec 3-2
Elements and Attributes
HTML Robert McIntosh
HTML Vocabulary.
WEBSITE DESIGN Chp 1
Text Elements.
Intro to CSS CS 1150 Spring 2017.
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.02D HTML Overview 3.02 Develop webpages.
Text Elements.
HTML 12/27/2018.
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
HTML What is it? HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet.
Intro to Web Development HTML Structure
Introduction to HTML5.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Introduction to HTML.
HTML Structure.
HTML What is Html? HTML stands for Hypertext Markup Language.
Introduction to HTML.
Web Application Development
Text Elements.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
HOW PAGES USE STRUCTURE HEADLINE HOW PAGES USE STRUCTURE TEXT.
3.02D HTML Overview 3.02 Develop webpages.
HTML Structure & syntax
Lesson 2: HTML5 Coding.
4.02A HTML Overview 4.02 Develop web pages using various layouts and technologies. (Note to instructor: HTML tags are in red only to differentiate from.
Text Elements.
HTML Introduction.
Presentation transcript:

HOW PAGES USE STRUCTURE HEADLINE

HOW PAGES USE STRUCTURE TEXT

HOW PAGES USE STRUCTURE IMAGE

HOW PAGES USE STRUCTURE SUBHEADING

HOW PAGES USE STRUCTURE Digital versions often have similar structure

Headings and subheadings reflect hierarchy of information STRUCTURE IN WORD DOCS Headings and subheadings reflect hierarchy of information

Main heading and important information appear first STRUCTURE IN WORD DOCS Main heading and important information appear first

The information is expanded upon and may use subheadings STRUCTURE IN WORD DOCS The information is expanded upon and may use subheadings

HTML: PAGE STRUCTURE <html> <body> <h1>This is the Main Heading</h1> <p>This text might be an introduction to the rest of the page.</p> Explain: HTML uses tags to act like containers. They indicate the structure of things found inside them. Click: Outlines around <html> Click: Outlines around <body> Click: Outlines around <h1> Click: Outlines around <h2> Click: Outlines around <p> <h2>This is a Sub-Heading</h2> <p>Many long articles have sub-headings to help you follow the structure.</p> <h2>Another Sub-Heading</h2> <p>Here you can see another.</p> </body> </html>

A CLOSER LOOK AT TAGS OPENING TAG CLOSING TAG CHARACTER FORWARD SLASH Explain: Most tags come in pairs: an opening and closing tag. Mention use of the term "element". Click: Opening tag Click: Closing tag Click: Label for character(s) which indicates purposes of tag Click: Label for left-angle bracket Click: Label for right-angle bracket Click: Label for forward slash FORWARD SLASH LEFT-ANGLE BRACKET RIGHT-ANGLE BRACKET

ATTRIBUTES TELL US MORE ABOUT ELEMENTS NAME Explain: Attributes can be used on opening tags. They tell us more about the content of that element. Click: Highlights the attribute name Click: Highlights the attribute value <a =" ">Paragraph in English</p> lang lang en-us en-us ATTRIBUTE VALUE

BODY, HEAD & TITLE <html> <head> <title>This is the Title of...</title> </head> <body> <h1>This is the Body of the Page</h1> <p>Anything within the body of a web page is displayed in the main browser window.</p> </body> </html> Explain: The overall structure of a page is comprised of two parts: the <head> and the <body>.

BODY, HEAD & TITLE <html> <head> <title>This is the Title of...</title> </head> <body> <h1>This is the Body of the Page</h1> <p>Anything within the body of a web page is displayed in the main browser window.</p> </body> </html> Explain: The <title> tag sits inside the <head> element.

BODY, HEAD & TITLE Explain: This highlights where the content of the <title> tag appears.

BODY, HEAD & TITLE <html> <head> <title>This is the Title of...</title> </head> <body> <h1>This is the Body of the Page</h1> <p>Anything within the body of a web page is displayed in the main browser window.</p> </body> </html> Explain: The <body> comes directly after the <head> and everything inside this element is shown in the main browser window.

BODY, HEAD & TITLE Explain: This highlights where the content of the <body> tag appears.

HTML pages are text documents. SUMMARY HTML pages are text documents. Clicks: Load individual bullet points.

SUMMARY HTML uses tags, which act like containers and tell you about the information that lies between them.

Tags are often referred to as elements. SUMMARY Tags are often referred to as elements.

SUMMARY Tags usually come in pairs. Opening tags denote the start of a piece of content; closing tags denote the end.

SUMMARY Opening tags can carry attributes, which tell us more about the content of that element.

Attributes require a name and a value. SUMMARY Attributes require a name and a value.

SUMMARY To learn HTML you need to know what tags you can use, what they do, and where they can go.