Lists in XHTML. Two main types of lists Ordered Lists sequences (e.g. the steps in a recipe) or preferences carry numbers (Arabic or Latin) or letters.

Slides:



Advertisements
Similar presentations
October 9, Reading Do Now: Write down your homework for the week! Write down your homework for the week!
Advertisements

MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Lists in HTML PowerPoint How to create lists in HTML
XHTML Basics. What is XHTML? XHTML is newer than the old HTML XHTML has stricter rules and does not allow some elements formerly used in HTML One benefit.
Anne McGrath 16 th February  Review of what we have learned so far.  Angled brackets surround HTML tags.  The words between the angled brackets.
1. Content – Collective term for all text, images, videos, etc. that you want to deliver to your audience. 2. Structure – How the content is placed on.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 3: XHTML Coding © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page.
1 Lists: Bringing Order Out of Chaous Plain Text Lists List Making Tags Ordered and Unordered Lists Key Terms Review Questions.
XML Primer. 2 History: SGML vs. HTML vs. XML SGML (1960) XML(1996) HTML(1990) XHTML(2000)
Lecture 13. A Very Brief Introduction to HTML and XHTML, part II Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell.
Introduction to HTML Lists Why Use Lists? Lists are one way to organize information for easy access. People are familiar with using lists to organize.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
CAPITAL letters in English. The Plitvice Lakes The Adriatic Sea.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Create Lists  Horizontal rule (line)  Create a page for.
Class 3 – Creating Lists In this lesson, you will learn to use HTML to organize your text into lists.
CO1552 – Web Application Development Lists, Special Characters, and Tables.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
1 Outline 3.1 Introduction 3.2 Editing HTML 3.3 First HTML Example 3.4 W3C HTML Validation Service 3.5 Headers 3.6 Linking 3.7 Images 3.8 Special Characters.
Using Venn Diagrams Principles of Math 11 Unit: Reasoning.
1 Mastering the Internet and HTML Lists and List Tags.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Formatting Text and Lists Essentials for.
EDUC 205: Children’s Literature & the Writing Process Day 14: Fantasy.
1 Web Development Lecture # 11 Introduction to XHTML (Chapter # 4) It.GulGasht.Com.
Slide 1 Standard Grade Computing Databases. Slide 2 Standard Grade Computing Definitions DatabaseA database is a structured collection of similar information.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
Lewis Carroll ( – ).
BEING a DIGITAL CITIZEN in a DIGITAL COMMUNITY What does it mean for you?
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
HTML and JavaScript Basics Unit One Lesson One Quick HTML Know-How Introducing basic HTML structure and building your first basic web page.
Informatics Computer School CS114 Web Publishing HTML Lesson 1.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
Agenda Lists Purpose Types of Lists: Unordered Ordered Definition.
Roald Dahl ( ).  Born in Wales, Dahl wrote books for both children and adults and became one of the world's best-selling authors, and he’s also.
Non-Fiction Books Non-fiction books are Fact books and are arranged by Dewey classification number in order that all subjects are kept together. Follow.
Purposes for Reading There are many purposes for reading. Readers can entertain themselves, learn things, get directions, and even find out facts about.
This shows CIS17 and the first day 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, it is a markup.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Enterprise 4.3 GA5 Public release: February 4 th, 2014.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
Unordered Lists Need to make a list of items that aren't numbered? You need.
Fantasy. The Fantasy Genre Events occur outside the ordinary laws that operate within the universe. Magic is central to the fantasy genre. Fantasy stories.
XHTML Basics. What is XHTML? XHTML is newer than, but built upon, the original HTML (Hyper Text Markup Language) platform. XHTML has stricter rules and.
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.
Glencoe Introduction to Web Design Chapter 4 XHTML Basics 1 Review Do you remember the vocabulary terms from this chapter? Use the following slides to.
Lecture: Lists. LISTS UNORDERED ORDERED What’s the Difference? Ordered lists use numbers and letters use where order matters (like recipes) Unordered.
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.
LETTERATURA PER BAMBINI
Literary Analysis.
VICTORIAN ERA Lewis Carrol: Alice’s Adventures in Wonderland (1865)
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Text Elements.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Text Elements.
Author: Miguel Viciedo Principal Specialist Methodological Area
Agenda item number 1 Agenda item number 2 Agenda item number 3 Agenda item number 4 Agenda item number 5.
Web Design and Development
Text Elements.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
HTML Lists.
Creating and modifying lists
WEB DESIGNING THROUGH HTML
Text Elements.
Can you put the symbols in?
BTT Web Design Quiz Solutions.
DREAMS IN LITERATURE: HARRY POTTER PART II
How to Compile a Working Bibliography
Text Elements.
Presentation transcript:

Lists in XHTML

Two main types of lists Ordered Lists sequences (e.g. the steps in a recipe) or preferences carry numbers (Arabic or Latin) or letters Example: 1.first step 2.second step 3.third step Unordered Lists items that do not have a natural order (e.g. the ingredients in a recipe) carry bullet points, symbols or dashes Example: – first item – second item – third item

XHTML Markup Source Code: first item second item third item Result in the browser: 1.first item 2.second item 3.third item

Advantages numbering is done automatically: My favourite books: 1.Alice in Wonderland 2.Peter Pan 3.Lord of the Rings Harry Potter

Advantages Source Code: Alice in Wonderland Harry Potter Peter Pan Lord of the Rings

The new list: My favourite books: 1.Alice in Wonderland 2.Harry Potter 3.Peter Pan 4.Lord of the Rings

Nested Lists Writing a term paper: 1.Finding a topic 2.Collecting literature – from the library – from the internet 3.Writing the text Source code: Finding a topic Collecting literature from the library from the internet Writing the text