Ordered Lists By Brian Christian. Ordered List Tags You use this tag when you want to start an ordered list. Each list item you write need to start with.

Slides:



Advertisements
Similar presentations
3.02D HTML Overview 3.02 Develop webpages.
Advertisements

Internet Basics & Way Beyond!
HTML.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
HTML popo.
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
CSS cont. October 5, Unit 4. Padding We can add borders around the elements of our pages To increase the space between the content and the border, use.
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
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.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Marking Up With Html: A Hypertext Markup Language Primer
Lecture 13. A Very Brief Introduction to HTML and XHTML, part II Instructor: Jie Yang Department of Computer Science University of Massachusetts Lowell.
HTML Code HTML can be written on the simplest text programs. A web page is defined by the tag.
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.
Notes Ch. 12—Creating Tables Web Page Design. Why Use Tables? Tables are used to create a variety of items such as calendars, charts, and spreadsheets.
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
HTML Links and Anchors.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
HTML basics exercises.
Tutorial #3 Cascading Style Sheets. Review: Last Class Image sizing Pathnames Project Default Path Relative Path Absolute Path Blackboard Homework Submission.
Web Technologies Website Development Trade & Industrial Education
Website Development with Dreamweaver
1 Mastering the Internet and HTML Lists and List Tags.
(CSS) More Details Instructor: Mr. Ahmed Al Astal ITGD4104 Department Requirement for senior student University of Palestine Faculty of IT.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Formatting Text and Lists Essentials for.
Chapter 6 An Introduction to HTML Pages Tag Nesting You can put two tags together to combine the effects Bold and underlined But make sure.
HTML: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
Tutorial #3 Cascading Style Sheets. Tutorial #2 Review - Anchors Links to Site DMACC Internal Links Go to Top Mail To me Local.
By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects.
1 Web Development Lecture # 11 Introduction to XHTML (Chapter # 4) It.GulGasht.Com.
HTML - Examples Be sure to check speaker notes for additional information!
HTML: Tables & Frames Internet Technology.
17 Apr 2002 XML Syntax: Documents Andy Clark. Basic Document Structure Element tags – Elements have associated attributes Text content Miscellaneous –
How to create Web Pages. Some relevant websites ????
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
Index Here type your information or document that you want to look on the Web page.
HTML. Adding Background Color The bgcolor attribute lets you change the background color of the Web page. Located in the body tag See common Web Page.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
Agenda Lists Purpose Types of Lists: Unordered Ordered Definition.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
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.
The Complete Reference OMT II Mam Saima Gul. * Modern HTML has three basic forms of lists: ordered lists ( ), unordered lists ( ), and definition lists.
Fine Tuning Basic HTML CGS3066. Some HTML Tags and Their Defaults default = What will happen in the absence of instructions to the contrary from you.
Cs332a_chapt04.ppt CS332A Advanced HTML Programming Text Controls Kerning (Code 4.1, Figure 4.1, Page 78) The amount of space between letters in a word.
HTML CODE Fill in your handout from notes on the slides!!
HTML Tags BTT1O. HTML  Documents written in hypertext markup language can be interpreted by all web browsers.  This language lets the web page developer.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
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.
WebD Introduction to CSS By Manik Rastogi.
CSS.
HTML Basics.
LAB Work 01 MBA 61062: E-Commerce
Hyper text markup Language
HTML Formatting.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Ordered & Unordered Lists in HTML
CS543: WEB APPLICATION PROGRAMMING
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Web pages Lesson 3.
HTML Links.
Web Design and Development
WEB & HTML Background Info.
Presentation transcript:

Ordered Lists By Brian Christian

Ordered List Tags You use this tag when you want to start an ordered list. Each list item you write need to start with and end with. Once you finish your list you want to finish with an to close the ordered list. The items need to be between the and tags.

Tag Attributes Type: In the tag you can have type equal to A, a, I, i, and 1. The meaning of each type is “A” (uppercase letters), “a” (lowercase letters), “I” (large roman numbers), “i” (small roman numbers) and “1” (default numbering system). Start: Specifies the start value of an ordered list. Reversed: This will have the list in descending order.

Example: Nested Lists Html base code How to align text Font attributes Creating links Making lists Background

Example: Continue a List Html base code How to align text Something just to talk about in here. Font attributes Creating links Making lists

Use in Web Design You can use ordered lists for your top ten things that you like to do. – For a list of instructions in a cooking recipe. – As well as an outline for your page.