HTML Boot Camp: Formatted Lists

Slides:



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

Chapter 2 HTML Basics Key Concepts
Lists, Lists, & Lists Unordered List Ordered List Definition List.
Tutorial 2: Formatting Text. Objectives Session 2.1 – Learn the functions of the Common toolbar – Change the size of text – Discern which fonts to use.
Tutorial 4 Formatting Text. XP New Perspectives on Blended HTML, XHTML, and CSS2 Objectives Create a spread heading Indent text Change the line spacing.
COS 125 DAY 21. Agenda  Assignment 6 due  Assignment 7 is posted Assignment 7 Due April 2PM  Left to do 1 Assignments (8 total)  Due May 2 3.
Chapter 4 – Intermediate HTML 4 Outline 4.1 Unordered Lists 4.2 Nested and Ordered Lists 4.3 Basic HTML Tables 4.4 Intermediate HTML Tables and Formatting.
Cascading Style Sheets 1. About Lists HTML list code ul, ol, dldl CSS list-item style properties
1 Lists: Bringing Order Out of Chaous Plain Text Lists List Making Tags Ordered and Unordered Lists Key Terms Review Questions.
AdvWeb-1/12 DePaul University SNL 262 Web Page Design Forms! - Chapt 8 Instructor: David A. Lash.
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.
COS 125 DAY 20.
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.
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.
Chapter 3 BIE1313/BPROG1203 | Web design Prepared by Mohamed Abdulkarim / Mike Ng Ah Ngan.
Class 3 – Creating Lists In this lesson, you will learn to use HTML to organize your text into lists.
HTML II. Factors to consider in designing a website. Organizing your files. HTML Tables. Unordered Lists. Ordered Lists. HTML Forms. Learning Objectives.
WDV 101 Intro to Website Development
HTML B OOT C AMP Itinerary Kirkwood Continuing Education © Copyright 2015, Fred R. McClurg All Rights Reserved.
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.
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.
Tutorial #4 Formatting Text and Links. Tutorial #3 Review - CSS CSS format Selector { property1: value1; /* Comments */ } Embedded, In-Line, and External.
1 Web Development Lecture # 11 Introduction to XHTML (Chapter # 4) It.GulGasht.Com.
Chapter 2 XHTML: Part II The Web Warrior Guide to Web Design Technologies.
HTML B OOT C AMP Chapter 11 Frames Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
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.
HTML 58.51A LINKING & LISTS Linking to local files name of destination.... anchor tag HREF attribute. This attribute identifies the location of the link.
Suzanne Sultan1 Line Breaks, Paragraphs, lists Lab3.
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
HTML.
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.
Formatting Text with HTML. Objectives: Students will be able to: Define the structure of the document with block elements Format numbered, bulleted, and.
HTML B OOT C AMP Chapter 2: Quick Start Kirkwood Continuing Education Fred McClurg, © Copyright 2015, Fred McClurg All Rights Reserved.
An outline is useful to organize your information You put this information in categories You use various symbols to organize your information For main.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2- part 2 Key Concepts 1 Copyright © Terry Felke-Morris.
ECA 228 Internet/Intranet Design I HTML Tags. ECA 228 Internet/Intranet Design I anchor tags Adds a link to the web page Anything placed between the anchor.
Assistant Professor,UCER Naini,Allahabad
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.
Selective Formatting. Auto Grader Multiple selectors  May use the same formatting for two elements h1, h2 { font-family: cursive; }  Maintains consistency.
Unordered Lists Need to make a list of items that aren't numbered? You need.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 4 Formatting Text and Links.
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.
© UNT in partnership with TEA1 Web Technologies Introduction to HTML Scripting.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
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
Client-Side Internet and Web Programming
Organizing Content with Lists and Tables
Introduction to the Internet
HTML Formatting.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Ordered & Unordered Lists in HTML
HTML Lists CS 1150 Fall 2016.
Chapter 6 Lists.
CS543: WEB APPLICATION PROGRAMMING
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Client-Side Internet and Web Programming
COS 125 DAY 23.
HTML Lists CS 1150 Spring 2017.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
COS 125 DAY 13.
Basics of Web Design Chapter 2 HTML Basics Key Concepts
LISTS.
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Presentation transcript:

HTML Boot Camp: Formatted Lists 4/23/2017 HTML Boot Camp Chapter 7 Formatted Lists Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved Introduction to Web Programming

Unordered List: <ul> tag HTML Boot Camp: Formatted Lists 4/23/2017 Unordered List: <ul> tag Description: When the order of items is not important, an unordered list is ideal. The items in an unordered list are prefixed with a bullet character. Example: <ul> <li> Heffalumps <li> Woozles </ul> Chapter 07 > Unordered List Introduction to Web Programming

<ul> tag list style type HTML Boot Camp: Formatted Lists 4/23/2017 <ul> tag list style type Description: The list style type can be specified. Example: <ul style="list-style-type: disc"> <li> Heffalumps <li> Woozles </ul> <ul style="list-style-type: circle"> <ul style="list-style-type: square"> <ul style="list-style-type: none"> Chapter 07 > Unordered List Style Introduction to Web Programming

<ul> tag “list-style-type” HTML Boot Camp: Formatted Lists 4/23/2017 <ul> tag “list-style-type” Description: The default bullet list- style-type can be set. Type Description Example disc Bullet symbol  circle Hollow bullet  square Filled square  none No symbol Introduction to Web Programming

Nesting Unordered List HTML Boot Camp: Formatted Lists 4/23/2017 Nesting Unordered List Description: Unordered lists can be nested. This results in auto indentation and a change in bullets. Example: <ul> <li> Josephine Rabbit <li> Flopsy </li> <li> Mopsy </li> <li> Cotton-tail </li> <li> Peter </li> </ul> </li> Chapter 07 > Nested Unordered List Introduction to Web Programming

Horizontal Unordered List HTML Boot Camp: Formatted Lists 4/23/2017 Horizontal Unordered List Description: The vertical arrangement of an unordered list can be changed to a horizontal style. Example: <style> ul#menu li { display: inline; } </style> <ul id="menu"> <li> <a href="#">Flopsy</a> </li> <li> <a href="#">Mopsy</a> </li> <li> <a href="#">Cotton-tail</a> </li> <li> <a href="#">Peter</a> </li> </ul> Chapter 07 > Horizontal Unordered List Introduction to Web Programming

Ordered List: <ol> tag HTML Boot Camp: Formatted Lists 4/23/2017 Ordered List: <ol> tag Description: When the order of items is important, an ordered list is ideal. Ordered list items are enumerated with a prefixed number, character, or Roman numeral. Example: <ol> <li> Lions <li> Tigers <li> Bears </ol> Chapter 07 > Ordered List Introduction to Web Programming

HTML Boot Camp: Formatted Lists 4/23/2017 Nesting Ordered Lists Description: Ordered lists can be nested. This results in auto indentation. Example: <ol> <li> Josephine Rabbit </li> <li> Flopsy </li> <li> Mopsy </li> <li> Cotton-tail </li> <li> Peter </li> </ol> Introduction to Web Programming

<ol> tag “type” attribute HTML Boot Camp: Formatted Lists 4/23/2017 <ol> tag “type” attribute Description: The ordered list can be used to layout a nested outline. Type Description Example A Capital letters A, B, C a Lower case letters a, b, c I Capital Roman I, II, III i Lower case Roman i, ii, iii 1 Arabic numerals 1, 2, 3 Introduction to Web Programming

Definition List: <dl> tag HTML Boot Camp: Formatted Lists 4/23/2017 Definition List: <dl> tag Description: Suitable for those situations that require a format similar to a dictionary where there is a word or phrase that is followed by a definition or explanation Example: <dl> <dt> doe </dt> <dd> A deer, a female deer </dd> <dt> ray </dt> <dd> A drop of golden sun </dd> </dl> Introduction to Web Programming