HTML Lists CS 1150 Spring 2017.

Slides:



Advertisements
Similar presentations
Lists in HTML PowerPoint How to create lists in HTML
Advertisements

Table, List, Blocks, Inline Style
COS 125 DAY 23. Agenda Assignment #6 Graded 8 A’s, 4 B’s and 1 D Biggest Problem area was layout Assignment #7 Posted Due April 20 Two (one?) more to.
SSome HTML tags allow you to specify a variety of options, or attributes, along with the basic tag itself. For example, when you begin a paragraph with.
Session: 3. © Aptech Ltd. 2Formatting Text using Tags / Session 3  Explain the Heading tag  Explain the different tags related to formatting  Explain.
Creating List. Lesson Proper Pre-Test Post-Test References Credits.
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.
Agenda Lists Purpose Types of Lists: Unordered Ordered Definition.
XHTML Lists. There are three types of lists available in XHTML  Unordered or bulleted lists  Ordered or numbered lists  Definition or directory lists.
The Complete Reference OMT II Mam Saima Gul. * Modern HTML has three basic forms of lists: ordered lists ( ), unordered lists ( ), and definition lists.
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 15: Lists.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
The Internet Day 4, 9/8/11 Getting on the Internet
Spring 2009 Kevin Cole Gallaudet University
Introduction to Programming
UNORDERED LISTS By J.R. Basham.
Tutorial 1 – Creating Web Pages With HTML
Client-Side Internet and Web Programming
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
Web Development & Design Foundations with HTML5 8th Edition
Marking Up with XHTML Tags describe how a web page should look
Organizing Content with Lists and Tables
Web Development & Design Foundations with HTML5 8th Edition
HTML: HyperText Markup Language
Introduction to the Internet
Web Development & Design Foundations with HTML5 7th Edition
Intro to HTML Mr. Singh.
HTML Formatting.
Display Property.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Lists in HTML PowerPoint How to create lists in HTML
Text Elements.
Ordered & Unordered Lists in HTML
HTML Lists CS 1150 Fall 2016.
Chapter 6 Lists.
LISTS.
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
The Web Warrior Guide to Web Design Technologies
Spring 2009 Kevin Cole Gallaudet University
Client-Side Internet and Web Programming
Elements and Attributes
COMPUTING FUNDAMENTALS
Web Design & Development
HTML (HyperText Markup Language)
CS7026: Authoring for Digital Media HTML Authoring
List Practice.
Text Elements.
Web Design and Development
COMS 161 Introduction to Computing
COS 125 DAY 23.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Lists, nesting, span/div
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
HTML Lists.
THREE LIST TYPES ORDERED UNORDERED DEFINITION Explain: There are three different types of list Ordered - The order of list items is important.
Marking Up with XHTML Tags describe how a web page should look
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
COS 125 DAY 13.
Basics of Web Design Chapter 2 HTML Basics Key Concepts
COMS 161 Introduction to Computing
LISTS.
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Technologies for web publishing
Text Elements.
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

HTML Lists CS 1150 Spring 2017

Types of Lists Ordered lists are lists where each item in the list is numbered Unordered lists are lists that begin with a bullet point (rather than characters that indicate order) Definition lists are made up of a set of terms along with the definitions for each of those terms

The <li> element Each item in a list is placed between an opening <li> tag and a closing </li> tag (the li stands for list item) Browsers indent lists by default The different types of lists are created with <ol> (ordered list), <ul> (unordered list), and <dl> (definition list)

Ordered Lists The ordered list is created with the <ol> element Each item in the list is placed between an opening <li> tag and a closing </li> tag Example: https://cs.mtsu.edu/~crn2k/public/courses/1150/HTMLExamples/ordered_lis t.html

Unordered Lists The unordered list is created with the <ul> element Each item in the list is placed between an opening <li> tag and a closing </li> tag Example: https://cs.mtsu.edu/~crn2k/public/courses/1150/HTMLExamples/unordered_ list.html

Definition Lists The definition list is created with the <dl> element Inside the <dl> elements you will usually see pairs of <dt> and <dd> elements <dt> is used to contain the term being defined <dd> is used to contain the definition Example: https://cs.mtsu.edu/~crn2k/public/courses/1150/HTMLExamples/definition_list.htm l

Nested Lists You can put a second list inside a <li> element to create a sub-list or nested list Browsers display nested lists indented further than the parent list In nested unordered lists, the browser will usually change the style of the bullet point too Example: https://cs.mtsu.edu/~crn2k/public/courses/1150/HTMLExamples/nested_list.html