learn html5: tables

13
inarocket.com HTML Learn at rocket speed TABLES

Upload: in-a-rocket

Post on 21-Apr-2017

9.551 views

Category:

Software


0 download

TRANSCRIPT

Page 1: Learn HTML5: Tables

inarocket.com

HTMLLearn at rocket speed

TABLES

Page 2: Learn HTML5: Tables

Learn front-end development at rocket speed

inarocket.com

by miguelsanchez.com

Page 3: Learn HTML5: Tables

Tables: basic

Page 4: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: BASIC

tbody

thead

table

tfoot

tr

tr

tr

tr

td td td

td td td

td td td

th th th

td td tdtr

Page 5: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: BASIC

<table><thead> <tr> <th>2014</th><th>2015</th> </tr></thead><tfoot> <tr> <td>Total: 3</td><td>Total: 5</td> </tr></tfoot>

Editor

<tbody> <tr> <td>1</td><td>2</td> </tr> <tr> <td>2</td><td>3</td> </tr></tbody></table>

Continues

READY TO USE CODE

Page 6: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: BASIC

Browser

2014 2015

1 2

2 3

Total: 3 Total: 5

index.html

Page 7: Learn HTML5: Tables

Tables: advanced

Page 8: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: ADVANCED

tbody

thead

table

tfoot

tr

tr

tr

tr

td td

td td td

td td

th th th

td colspan=3tr

rowspan=3

Page 9: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: ADVANCED

<table><thead> <tr> <th>2015</th><th>2016</th> </tr></thead><tfoot> <tr> <td colspan=2>Source: W3C</td> </tr></tfoot>

Editor

<tbody> <tr> <td rowspan=2>No Data</td><td>20</td> </tr> <tr> <td>25</td> </tr></tbody></table>

Continues

READY TO USE CODE

Page 10: Learn HTML5: Tables

inarocket.com - HTML / Tables

TABLES: ADVANCED

Browser

2015 2016

No Data20

25

Source: W3C

index.html

Page 11: Learn HTML5: Tables

Are you also interested in learning

BOOTSTRAP 4POSTCSS?+

http://inarocket.teachable.com/courses/css-postcssPlease visit:

Page 12: Learn HTML5: Tables

Learn front-end development at rocket speed

inarocket.com

by miguelsanchez.com

Page 13: Learn HTML5: Tables

inarocket.com

HTMLLearn at rocket speed

TABLES