0% found this document useful (0 votes)
3K views7 pages

HTML Continued: Class 9

The document discusses several new HTML elements including <header>, <nav>, <section>, <article>, <aside>, and <footer>. It also covers commenting code in HTML using <!-- Comments go here --> and different types of lists such as unordered and ordered lists that can be nested using <ul> and <ol> tags along with <li> tags for each list item. Additionally, it outlines the basic structure of HTML tables using tags like <table>, <tr>, <th>, <td>, and <caption> as well as colspan and rowspan attributes. Finally, it instructs readers to complete readings for chapters 1 and 2.

Uploaded by

Adam Scher
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3K views7 pages

HTML Continued: Class 9

The document discusses several new HTML elements including <header>, <nav>, <section>, <article>, <aside>, and <footer>. It also covers commenting code in HTML using <!-- Comments go here --> and different types of lists such as unordered and ordered lists that can be nested using <ul> and <ol> tags along with <li> tags for each list item. Additionally, it outlines the basic structure of HTML tables using tags like <table>, <tr>, <th>, <td>, and <caption> as well as colspan and rowspan attributes. Finally, it instructs readers to complete readings for chapters 1 and 2.

Uploaded by

Adam Scher
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML CONTINUED

Class 9

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

NEW ELEMENTS

<header> - introductory content for document or section of a document <nav> - contains navigation <section> - defines a section(s) of content within a document <article> - independent, self-contained content <aside> - content that is separate from the nearby content <footer> - content that ends your document

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

COMMENTING

Commenting code allows the developer to add comments, instructions, notes, etc to their HTML pages, without that text being rendered <!-- Comments go here --> Note: While comments do not appear in the HTML page, they can still be viewed when looking at the pages source

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

LISTS

<ul> or <ol> - unordered and ordered lists (a single tag is used for an entire list). Lists can be nested by added <ul> or <ol> tags within an existing list. <li> - is a list item. Each item within a list gets its own tag. start=n - sets the start value for an ordered list value=n - sets a specific numeric value for an item in an ordered list

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

TABLES

<table> - tag that surrounds all the table content <tr> - indicates a row within a table <th> - a table header that is nested inside a <tr> <td> - a table cell or division that is nested inside a <tr> <caption> - caption for table that is normally found at the beginning <thead> <tbody> <tfoot> - additional tags to organize table content caption th tr td

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

TABLES

colspan=n - extends <td> the specified number of columns rowspan=n - extends <td> the specified number of rows

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

Reading for Class

READING CHAPTERS 1 & 2

Introduction to Web Design & Computer Principles CSCI-UA.0004-003

You might also like