Text Elements. We've already learned about the,,,, and elements. Now let's learn some elements that we'll use to present actual text content on our web.

Slides:



Advertisements
Similar presentations
MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Chapter 2 HTML Basics Key Concepts
Anne McGrath 16 th February  Review of what we have learned so far.  Angled brackets surround HTML tags.  The words between the angled brackets.
XHTML Basics.
How Tags are used to form your Web Page
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 3: XHTML Coding © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
HTML Hypertext Markup Language –First proposed by CERN in 1989 –It is non-linear so it allows you to jump from place to place –Markup refers to the structure.
Web Page Development Identify elements of a Web Page Start Notepad
HTML Lesson 1 TBE 540 Farah Fisher. Prerequisites Before beginning this lesson, the student must be able to… Access web pages and navigate the web Access.
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
HTML Notes Chapters 1--6 Codes used in creating HTML documents are called tags. Tags are always enclosed in left ( ) angle brackets. Tags can be upper.
Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Class 3 – Creating Lists In this lesson, you will learn to use HTML to organize your text into lists.
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.
Intro to Dreamweaver Web Design Section 7-1 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course.
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.
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
Chapter 4 (through page 110) Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
XP Mohammad Moizuddin Creating Web Pages with HTML Tutorial 1 1 New Perspectives on Creating Web Pages With HTML Tutorial 1: Developing a Basic Web Page.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Web Page Creation Part I ST: Introduction to Web Interface Design Prof. Angela Guercio.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
1 Web Development Lecture # 11 Introduction to XHTML (Chapter # 4) It.GulGasht.Com.
Designing a Web Page with Tables. A text table: contains only text, evenly spaced on the Web page in rows and columns uses only standard word processing.
Essentials of HTML Class 4 Instructor: Jeanne Hart
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Organization Components (Lists, Table & Frame) Wah Yan College (Hong Kong) Mr. Li. C.P.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
INTRODUCTORY Tutorial 4 Exploring Graphic Elements and Images.
Introducing Cascading Style Sheets. Cascading Style Sheet Basics  Cascading Style Sheet Basics  Creating Styles  Using Styles  Manipulating Styles.
© 2011 Delmar, Cengage Learning Chapter 3 Working with Text and Cascading Style Sheets.
Agenda Lists Purpose Types of Lists: Unordered Ordered Definition.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
Formatting Text with HTML. Objectives: Students will be able to: Define the structure of the document with block elements Format numbered, bulleted, and.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
Elements and Attributes. XHTML Elements The element contains special information that does not necessarily show up on the web page. The element determines.
HTML Review * is used as a reference for most of the notes in this powerpoint.
`. Lecture Overview HTML Body Elements Linking techniques HyperText references Linking images Linking to locations on a page Linking to a fragment on.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
Group 9: Through examples, explain how to build a css navigation bar. Presented by: Daniel Ku, Matt Iannacci & Iphia Henry.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
© Ms. Masihi.  A Web page contains text and images that convey specific information to viewers.  To create a new web page, open Dreamweaver and select.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
Lesson 4 Basic Text Formatting. Objectives ● I ● In this tutorial we will: ● Introduce Wiki Syntax ● Learn how to Bold and Italicise text, and add Headings.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Tutorial 1 – Creating Web Pages With HTML
LAB Work 01 MBA 61062: E-Commerce
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Intro to Dreamweaver Web Design Section 8-1
Text Elements.
Elements of HTML Web Design – Sec 3-2
Elements and Attributes
WEBSITE DESIGN Chp 1
Text Elements.
Text Elements.
HTML ELEMENTS Ms. Olifer.
HTML Formatting Text.
HTML Structure.
Text Elements.
HyperText Markup Language
Lesson 2: HTML5 Coding.
Text Elements.
Presentation transcript:

Text Elements

We've already learned about the,,,, and elements. Now let's learn some elements that we'll use to present actual text content on our web page: XHTML Text Elements An XHTML element is a component of an XHTML document. It is typically comprised of a start tag, an end tag, and some web content in between the start and end tag. Paragraph Line Break Horizontal Rule - Headings Unordered List Ordered List List Item

The Element Text content can also exist in an XHTML document all by itself. However, this is not recommended, as it's easier to format and style text inside a element, as we'll learn later in the course. The standard way of presenting blocks of text in an XHTML document is to use the ("paragraph") element: This is a paragraph of text. We can make it as long as we wish. The browser will automatically wrap the lines to accommodate the size of the browser window. This is the second paragraph of text. The paragraph element adds a blank line above and below the text.

The Element The ("break") element creates a line break without adding any blank lines above or below: This is a paragraph of text. We can make it as long as we wish. The browser will automatically wrap the lines to accommodate the size of the browser window. This is the second paragraph of text. A handful of elements do not use a separate closing tag. We already saw the element from the first lesson. is another example. In these cases, the forward slash is placed at the end of the opening tag itself, and these are known as self-closing elements.

The Element The ("horizontal rule") element draws a horizontal line across the screen: This is a paragraph of text. We can make it as long as we wish. The browser will automatically wrap the lines to accommodate the size of the browser window. This is the second paragraph of text. Note that the element is another self-closing element and includes the trailing slash.

The - Elements Heading elements provide structure to a web page: This is an h1 heading. This is an h2 heading. This is an h3 heading. This is an h4 heading. This is an h5 heading. This is an h6 heading. Heading elements add blank lines before and after the text, just like does. The element - often referred to as the main heading - indicates the most important heading and should be used no more than once per page. The role of XHTML is to define and organize content, not to format it. Heading elements should not be used as a way to bold words on the page. Rather, they should be used to define the relative importance of content. Thus, is more important than. Lower elements (e.g. ) can be used, even if higher ones (e.g. ) haven't.

The Element The element ("unordered list") creates an indented bullet point list of items: Fruit in Alphabetical Order: Apples Bananas Cantaloupes The element ("list item") is used for each individual item in a list. They are all nested within the tags. By default, the list items are shown with bullet points, but this can be changed to squares, circles, or other graphics using CSS, which we will learn later in the course.

The Element The element ("ordered list") creates an indented list of numbered items: Fruit in Alphabetical Order: Apples Bananas Cantaloupes By default, the list items show with incrementing numbers. By using CSS, we can change this to letters or Roman numerals. The element works identically to the element. The only difference is whether the listed items are shown with bullet points or numbers.