Презентация Web Development & Design Foundations with HTML5 8th Edition онлайн

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему Web Development & Design Foundations with HTML5 8th Edition абсолютно бесплатно. Урок-презентация на эту тему содержит всего 18 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.
Презентации » Устройства и комплектующие » Web Development & Design Foundations with HTML5 8th Edition



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    18 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    1.48 MB
  • Просмотров:
    74
  • Скачиваний:
    1
  • Автор:
    неизвестен



Слайды и текст к этой презентации:

№1 слайд
Web Development amp Design
Содержание слайда: Web Development & Design Foundations with HTML5 8th Edition CHAPTER 8 KEY CONCEPTS

№2 слайд
Learning Outcomes In this
Содержание слайда: Learning Outcomes In this chapter, you will learn how to ... Create a basic table with the table, table row, table header, and table cell elements Configure table sections with the thead, tbody, and tfoot elements Increase the accessibility of a table Style an HTML table with CSS Describe the purpose of CSS structural pseudo-classes

№3 слайд
HTML Table Tables are used on
Содержание слайда: HTML Table Tables are used on web pages to organize tabular information Composed of rows and columns – similar to a spreadsheet. Each individual table cell is at the intersection of a specific row and column. Configured with table, tr, and td elements

№4 слайд
HTML Table Elements lt table
Содержание слайда: HTML Table Elements <table> Contains the table <tr> Contains a table row <td> Contains a table cell <caption> Configures a description of the table

№5 слайд
HTML Table Example lt table
Содержание слайда: HTML Table Example <table border="1"> <caption>Bird Sightings</caption> <tr> <td>Name</td> <td>Date</td> </tr> <tr> <td>Bobolink</td> <td>5/25/10</td> </tr> <tr> <td>Upland Sandpiper</td> <td>6/03/10</td> </tr> </table>

№6 слайд
HTML Table Example lt table
Содержание слайда: HTML Table Example 2 <table border="1"> <tr> <th>Name</th> <th>Birthday</th> </tr> <tr> <td>James</td> <td>11/08</td> </tr> <tr> <td>Karen</td> <td>4/17</td> </tr> <tr> <td>Sparky</td> <td>11/28</td> </tr> </table>

№7 слайд
HTML Table Attributes align
Содержание слайда: HTML Table Attributes align (obsolete) bgcolor (obsolete) border cellpadding (obsolete) cellspacing (obsolete) summary (obsolete but may be reinstated) width (obsolete) Use CSS to configure table characteristics instead of HTML attributes

№8 слайд
HTML Common Table Cell
Содержание слайда: HTML Common Table Cell Attributes align (obsolete) bgcolor (obsolete) colspan rowspan valign (obsolete) height (deprecated) width (deprecated) Use CSS to configure most table cell characteristics instead of HTML attributes

№9 слайд
HTML colspan Attribute lt
Содержание слайда: HTML colspan Attribute <table border="1"> <tr> <td colspan=“2”> Birthday List</td> </tr> <tr> <td>James</td> <td>11/08</td> </tr> <tr> <td>Karen</td> <td>4/17</td> </tr> </table>

№10 слайд
HTML rowspan Attribute lt
Содержание слайда: HTML rowspan Attribute <table border="1"> <tr> <td rowspan="2">This spans two rows</td> <td>Row 1 Column 2</td> </tr> <tr> <td>Row 2 Column 2</td> </tr> </table>

№11 слайд
Accessibility and Tables Use
Содержание слайда: Accessibility and Tables Use table header elements (<th> tags) to indicate column or row headings. Use the caption element to provide a text title or caption for the table. Complex tables: Associate table cell values with their corresponding headers <th> tag id attribute <td> tag headers attribute

№12 слайд
lt table border quot quot gt
Содержание слайда: <table border="1"> <table border="1"> <caption>Bird Sightings</caption> <tr> <th id="name">Name</th> <th id="date">Date</th> </tr> <tr> <td headers="name">Bobolink</td> <td headers="date">5/25/10</td> </tr> <tr> <td headers="name">Upland Sandpiper</td> <td headers="date">6/03/10</td> </tr> </table>

№13 слайд
Checkpoint Describe the
Содержание слайда: Checkpoint Describe the purpose of using a table on a web page. How is the text contained in a th element displayed by the browser? Describe one coding technique that increases the accessibility of an HTML table.

№14 слайд
Using CSS to Style a Table
Содержание слайда: Using CSS to Style a Table

№15 слайд
CSS Structural Pseudo-classes
Содержание слайда: CSS Structural Pseudo-classes

№16 слайд
Table Row Groups lt thead gt
Содержание слайда: Table Row Groups <thead> table head rows <tbody > table body rows <tfoot> table footer rows

№17 слайд
Checkpoint . Describe a
Содержание слайда: Checkpoint 1. Describe a reason to configure a table with CSS properties instead of HTML attributes. 2. List three elements that are used to group table rows.

№18 слайд
Summary This chapter
Содержание слайда: Summary This chapter introduced the HTML and CSS techniques used to create and configure tables on web pages.

Скачать все slide презентации Web Development & Design Foundations with HTML5 8th Edition одним архивом: