SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Z
Week 10:
Tables and Forms
in HTML
Subject Code: COMP121
By: Marlon Jamera
Email: mbjamera@ama.edu.ph
Z
Tables and Forms
in HTML
Z
Scope of the Lesson
• HTML Tables
• Nested Tables
• Cells Width
• Cell Spacing and Padding
• Column and Row Span
• HTML Forms
• Form Fields
• Form Controls
Z
Learning Outcomes
By the end of the lesson, you will be
familiar and know how the website works
using tables and forms in HTML.
• Discuss the basic coding of tables in
HTML.
• Understand the coding syntax of creating
tables and forms in HTML.
• Explain thoroughly the coding styles of
forms in HTML.
Z
HTML Tables
• Tables represent tabular data
• A table consists of one or several row
• Each row has one or more columns
• Tables comprised of several core tags:
<table></table>: begin / end table
<tr></tr>: create table row
<td></td>: create tabular data (cell)
Z
HTML Tables
• Start and end of a table
<table>…………….</table>
• Start and end of a row
<tr>………………........</tr>
• Start and end of a cell in a row
<td>…………………...</td>
Z
Simple HTML Table - Example
<table border="1" cellspacing="0"
cellpadding="5">
<tr>
<td><p>Name</p></td>
<td><p>Juan Dela Cruz</p></td>
</tr>
<tr>
<td><p>Age</p></td>
<td><p>21</p></td>
</tr>
<tr>
<td><p>Address</p></td>
<td><p>Manila, Philippines</p></td>
</tr>
</table>
Z
Complete HTML Tables
• Tables rows split into three sections:,
heading, body and footer, each containing
table rows.
• Divides the table into semantic sections
• Table sections:
• <thead> denotes table heading
• <tbody> denotes collection of table rows
that contain the very data
• <tfoot> denotes table footer but comes
before the <tbody> tag
Z
Complete HTML Tables - Example
First comes the header
Then comes the footer
Last comes the body (data)
<table>
<thead>
<tr><td>Column heading</td><td>Column
heading</td></tr>
</thead>
<tfoot>
<tr><td>Column footer</td><td>Column
footer</td></tr>
</tfoot>
<tbody>
<tr><td>Cell 1</td><td>Cell 2</td></tr>
<tr><td>Cell 3</td><td>Cell 4</td></tr>
</tbody>
</table>
Z
Complete HTML Tables - Example
<table>
<thead>
<tr><td>Column heading</td><td>Column
heading</td></tr>
</thead>
<tfoot>
<tr><td>Column footer</td><td>Column
footer</td></tr>
</tfoot>
<tbody>
<tr><td>Cell 1</td><td>Cell 2</td></tr>
<tr><td>Cell 3</td><td>Cell 4</td></tr>
</tbody>
</table>
Z
Complete HTML Tables - Example
<table>
<thead>
<tr><td>Column heading</td><td>Column
heading</td></tr>
</thead>
<tfoot>
<tr><td>Column footer</td><td>Column
footer</td></tr>
</tfoot>
<tbody>
<tr><td>Cell 1</td><td>Cell 2</td></tr>
<tr><td>Cell 3</td><td>Cell 4</td></tr>
</tbody>
</table>
Although the footer is
before the data in the
code, it is displayed last
Z
Nested Tables
• Table Data “cell” (<td>) can contain nested
tables (tables within tables):
<table border="1">
<tr>
<td>Contact:</td>
<td>
<table border="1">
<tr>
<td>First Name</td>
<td>Last Name</td>
</tr>
</table>
</td>
</tr>
</table>
Z
Nested Tables
• Table Data “cell” (<td>) can contain nested
tables (tables within tables):
<table border="1">
<tr>
<td>Contact:</td>
<td>
<table border="1">
<tr>
<td>First Name</td>
<td>Last Name</td>
</tr>
</table>
</td>
</tr>
</table>
Z
Cells Spacing and Padding
• Tables have two important attributes:
 cellpadding
 Defines the empty
space around the cell
contents
 cellspacing
 Defines the empty
space between
the cells
cell cell
cell cell
cell
cell
cell
cell
Z
Cell Spacing and Padding -
Example
<html>
<head><title>Table Cells</title></head>
<body>
<table cellspacing="15" cellpadding="0"
bgcolor="red">
<tr><td bgcolor="yellow">First</td>
<td bgcolor="yellow">Second</td></tr>
</table>
<br/>
<table cellspacing="0" cellpadding="10"
bgcolor="yellow" border="1">
<tr><td>First</td><td>Second</td></tr>
</table>
</body>
</html>
Z
Cell Spacing and Padding -
Example
<html>
<head><title>Table Cells</title></head>
<body>
<table cellspacing="15" cellpadding="0"
bgcolor="red">
<tr><td bgcolor="yellow">First</td>
<td bgcolor="yellow">Second</td></tr>
</table>
<br/>
<table cellspacing="0" cellpadding="10"
bgcolor="yellow" border="1">
<tr><td>First</td><td>Second</td></tr>
</table>
</body>
</html>
Z
Column and Row Span
• Tables cells have two important attributes:
 rowspan
 Defines how
many rows the
cell occupies
 colspan
 Defines how
many columns
the cell occupies
cell[1,1] cell[1,2]
cell[2,1]
colspan="1"colspan="1"
colspan="2"
cell[1,1]
cell[1,2]
cell[2,1]
rowspan="2" rowspan="1"
rowspan="1"
Z
Column and Row Span - Example
<html>
<head><title>Colspan and Rowspan</title></head>
<body>
<br/>
<table cellspacing="0" cellpadding="10"
border="1">
<tr bgcolor="yellow"><td>Cell[1,1]</td>
<td colspan="2">Cell[2,1]</td></tr>
<tr bgcolor="#FFCC66"><td>Cell[1,2]</td>
<td rowspan="2">Cell[2,2]</td>
<td>Cell[3,2]</td></tr>
<tr bgcolor="#CCCCFF"><td>Cell[1,3]</td>
<td>Cell[2,3]</td></tr>
</table>
</body>
</html>
Z
Column and Row Span - Example
<html>
<head><title>Colspan and Rowspan</title></head>
<body>
<br/>
<table cellspacing="0" cellpadding="10"
border="1">
<tr bgcolor="yellow"><td>Cell[1,1]</td>
<td colspan="2">Cell[2,1]</td></tr>
<tr bgcolor="#FFCC66"><td>Cell[1,2]</td>
<td rowspan="2">Cell[2,2]</td>
<td>Cell[3,2]</td></tr>
<tr bgcolor="#CCCCFF"><td>Cell[1,3]</td>
<td>Cell[2,3]</td></tr>
</table>
</body>
</html>
Cell[2,3]Cell[1,3]
Cell[3,2]
Cell[2,2]
Cell[1,2]
Cell[2,1]Cell[1,1]
Z
HTML Forms
• Forms are the primary method for gathering
data from site visitors.
• Create a form block with
• Example:
<form></form>
<form name="myForm" method="post"
action="path/to/some-script.php">
...
</form>
Z
HTML Forms
• Forms are the primary method for gathering
data from site visitors.
• Create a form block with
• Example:
<form></form>
<form name="myForm" method="post"
action="path/to/some-script.php">
...
</form>
The "action" attribute tells where
the form data should be sent
The “method" attribute tells how
the form data should be sent – via
GET or POST request
Z
Form Fields
• Text fields are single-line entry fields:
• Text areas can contain multiple lines of
text:
• Hidden fields contain data not shown to
user:
<input type="text" name="FirstName"
value="This is a text field">
<textarea name="Comments">This is a multi-
line text field</textarea>
<input type="hidden" name="Account"
value="This is a hidden text field">
Z
Form Input Controls
• Create a checkbox:
• Create a radio button:
• Radio buttons can be grouped, allowing
only one to be selected from a group:
<input type="checkbox" name="fruit"
value="apple">
<input type="radio" name="title"
value="Mr.">
<input type="radio" name="town"
value="Sofia">
<input type="radio" name="town"
value="Varna">
Z
Form Input Controls
• Drop down menu list:
• Submit button:
<select name="gender">
<option value="Value 1"
selected="selected">Male</option>
<option value="Value
2">Female</option>
<option value="Value
3">Other</option>
</select>
<input type="submit" name="submitBtn"
value="Apply Now">
Z
Form Input Controls
• Reset Button: clears the form
• Image Button: acts like submit but image is
displayed instead of button
• Ordinary Button: used for JavaScript, no
default action.
<input type="reset" name="resetBtn"
value="Clear the form">
<input type="image" src="submit.gif"
name="submitBtn" alt="Submit">
<input type="button" value="simple
button">
Z
Form Input Controls
• Password input: acts like normal text field
but hides the text with * signs
• Multiple selected field: code is like drop
down menu but displays list of items to select
<input type="password" name="pass"
value="">
<select name="products"
multiple="multiple">
<option value="Value 1"
selected="selected">keyboard</option>
<option value="Value 2">mouse</option>
<option value="Value
3">speakers</option>
</select>
Z
HTML Forms - Example
<form method="POST" action="apply-now.php">
<input name="subject" type="hidden" value="Class" />
<p>Degree:
<select name="degree">
<option value="BA">Bachelor of Art</option>
<option value="BS">Bachelor of Science</option>
<option value="MBA" selected="true">Master of
Business Administration</option>
</select>
</p>
<p>
First Name: <input type="text" name="firstname" />
</p>
<p>
Last Name: <input type="text" name="lastname" />
</p>
<p>
Student ID: <input type="password" name="studentid"
/>
</p>
Z
HTML Forms - Example
<p>
Gender:
<input name="gender" type="radio" value="Male"
checked="true" /> Male
<input name="gender" type="radio" value="Female" />
Female
</p>
<p>
E-mail: <input type="text" name="email" value="" />
</p>
<p>
<textarea name="terms" cols="30" rows="4"
readonly="true">TERMS AND CONDITIONS
By clicking the Send Form button you agree to submit
this form.</textarea>
</p>
<p>
<input type="submit" name="button" value="Send
Form" />
</p>
</form>
Z
HTML Forms - Example
<p>
Gender:
<input name="gender" type="radio" value="Male"
checked="true" /> Male
<input name="gender" type="radio" value="Female" />
Female
</p>
<p>
E-mail: <input type="text" name="email" value="" />
</p>
<p>
<textarea name="terms" cols="30" rows="4"
readonly="true">TERMS AND CONDITIONS
By clicking the Send Form button you agree to submit
this form.</textarea>
</p>
<p>
<input type="submit" name="button" value="Send
Form" />
</p>
</form>
Z
Let’s call it a day,
Thank you!

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
Html-list
Html-listHtml-list
Html-list
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Html list
Html listHtml list
Html list
 
Java script
Java scriptJava script
Java script
 
CSS
CSSCSS
CSS
 
Html ppt
Html pptHtml ppt
Html ppt
 
MySQL and its basic commands
MySQL and its basic commandsMySQL and its basic commands
MySQL and its basic commands
 
Html Table
Html TableHtml Table
Html Table
 
Html forms
Html formsHtml forms
Html forms
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
JQuery introduction
JQuery introductionJQuery introduction
JQuery introduction
 
Introduction to BOOTSTRAP
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAP
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Tags in html
Tags in htmlTags in html
Tags in html
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Jquery
JqueryJquery
Jquery
 
Html frames
Html framesHtml frames
Html frames
 

Andere mochten auch (7)

Html forms
Html formsHtml forms
Html forms
 
Html basics 8 frame
Html basics 8 frameHtml basics 8 frame
Html basics 8 frame
 
Session and cookies ,get and post methods
Session and cookies ,get and post methodsSession and cookies ,get and post methods
Session and cookies ,get and post methods
 
Web html table tags
Web html  table tagsWeb html  table tags
Web html table tags
 
2. HTML forms
2. HTML forms2. HTML forms
2. HTML forms
 
Html forms
Html formsHtml forms
Html forms
 
Basic html
Basic htmlBasic html
Basic html
 

Ähnlich wie Tables and Forms in HTML

HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
Doncho Minkov
 
Html - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik AcademyHtml - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik Academy
Ognyan Penkov
 
Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)
club23
 

Ähnlich wie Tables and Forms in HTML (20)

HTML_TABLES,FORMS,FRAME markup lang.pptx
HTML_TABLES,FORMS,FRAME markup lang.pptxHTML_TABLES,FORMS,FRAME markup lang.pptx
HTML_TABLES,FORMS,FRAME markup lang.pptx
 
HTML Basic
HTML BasicHTML Basic
HTML Basic
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
Tables and their padding in HTML etc.pptx
Tables and their padding in HTML etc.pptxTables and their padding in HTML etc.pptx
Tables and their padding in HTML etc.pptx
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
 
Unit 2 (it workshop)
Unit 2 (it workshop)Unit 2 (it workshop)
Unit 2 (it workshop)
 
Html - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik AcademyHtml - Tables, Forms and Frames by Telerik Academy
Html - Tables, Forms and Frames by Telerik Academy
 
Lecture 2.ppt
Lecture 2.pptLecture 2.ppt
Lecture 2.ppt
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
 
Html&css lesson 2
Html&css lesson 2Html&css lesson 2
Html&css lesson 2
 
PPT-203105353-1.pdf
PPT-203105353-1.pdfPPT-203105353-1.pdf
PPT-203105353-1.pdf
 
Handout5 tables
Handout5 tablesHandout5 tables
Handout5 tables
 
FYBSC IT Web Programming Unit II Html 5 Tables, Forms and Media
FYBSC IT Web Programming Unit II  Html 5 Tables, Forms and MediaFYBSC IT Web Programming Unit II  Html 5 Tables, Forms and Media
FYBSC IT Web Programming Unit II Html 5 Tables, Forms and Media
 
Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)
 
Response Tables.ppt
Response Tables.pptResponse Tables.ppt
Response Tables.ppt
 
2. HTML Tables.ppt
2. HTML Tables.ppt2. HTML Tables.ppt
2. HTML Tables.ppt
 
Lecture 5 html table
Lecture 5 html tableLecture 5 html table
Lecture 5 html table
 
01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx
 
WEP4 and 5.pptx
WEP4 and 5.pptxWEP4 and 5.pptx
WEP4 and 5.pptx
 
Table and Form HTML&CSS
Table and Form HTML&CSSTable and Form HTML&CSS
Table and Form HTML&CSS
 

Mehr von Marlon Jamera

Mehr von Marlon Jamera (17)

JavaScript Conditional Statements
JavaScript Conditional StatementsJavaScript Conditional Statements
JavaScript Conditional Statements
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
ICT in Society
ICT in SocietyICT in Society
ICT in Society
 
ICT in Business
ICT in BusinessICT in Business
ICT in Business
 
The Future of ICT
The Future of ICTThe Future of ICT
The Future of ICT
 
Trends in the Database
Trends in the DatabaseTrends in the Database
Trends in the Database
 
Trends in Database Management
Trends in Database ManagementTrends in Database Management
Trends in Database Management
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTML
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
Website Basics and Categories
Website Basics and CategoriesWebsite Basics and Categories
Website Basics and Categories
 
Trends In Telecommunications
Trends In TelecommunicationsTrends In Telecommunications
Trends In Telecommunications
 
Software Trends
Software TrendsSoftware Trends
Software Trends
 
Hardware Technology Trends
Hardware Technology TrendsHardware Technology Trends
Hardware Technology Trends
 
Familiarization with Web Tools
Familiarization with Web ToolsFamiliarization with Web Tools
Familiarization with Web Tools
 
Internet Applications
Internet ApplicationsInternet Applications
Internet Applications
 
Introduction to World Wide Web
Introduction to World Wide WebIntroduction to World Wide Web
Introduction to World Wide Web
 

Kürzlich hochgeladen

VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
 
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
📱Dehradun Call Girls Service 📱☎️ +91'905,3900,678 ☎️📱 Call Girls In Dehradun 📱
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
 
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
Thalassery Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call G...
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 

Tables and Forms in HTML

  • 1. Z Week 10: Tables and Forms in HTML Subject Code: COMP121 By: Marlon Jamera Email: mbjamera@ama.edu.ph
  • 3. Z Scope of the Lesson • HTML Tables • Nested Tables • Cells Width • Cell Spacing and Padding • Column and Row Span • HTML Forms • Form Fields • Form Controls
  • 4. Z Learning Outcomes By the end of the lesson, you will be familiar and know how the website works using tables and forms in HTML. • Discuss the basic coding of tables in HTML. • Understand the coding syntax of creating tables and forms in HTML. • Explain thoroughly the coding styles of forms in HTML.
  • 5. Z HTML Tables • Tables represent tabular data • A table consists of one or several row • Each row has one or more columns • Tables comprised of several core tags: <table></table>: begin / end table <tr></tr>: create table row <td></td>: create tabular data (cell)
  • 6. Z HTML Tables • Start and end of a table <table>…………….</table> • Start and end of a row <tr>………………........</tr> • Start and end of a cell in a row <td>…………………...</td>
  • 7. Z Simple HTML Table - Example <table border="1" cellspacing="0" cellpadding="5"> <tr> <td><p>Name</p></td> <td><p>Juan Dela Cruz</p></td> </tr> <tr> <td><p>Age</p></td> <td><p>21</p></td> </tr> <tr> <td><p>Address</p></td> <td><p>Manila, Philippines</p></td> </tr> </table>
  • 8. Z Complete HTML Tables • Tables rows split into three sections:, heading, body and footer, each containing table rows. • Divides the table into semantic sections • Table sections: • <thead> denotes table heading • <tbody> denotes collection of table rows that contain the very data • <tfoot> denotes table footer but comes before the <tbody> tag
  • 9. Z Complete HTML Tables - Example First comes the header Then comes the footer Last comes the body (data) <table> <thead> <tr><td>Column heading</td><td>Column heading</td></tr> </thead> <tfoot> <tr><td>Column footer</td><td>Column footer</td></tr> </tfoot> <tbody> <tr><td>Cell 1</td><td>Cell 2</td></tr> <tr><td>Cell 3</td><td>Cell 4</td></tr> </tbody> </table>
  • 10. Z Complete HTML Tables - Example <table> <thead> <tr><td>Column heading</td><td>Column heading</td></tr> </thead> <tfoot> <tr><td>Column footer</td><td>Column footer</td></tr> </tfoot> <tbody> <tr><td>Cell 1</td><td>Cell 2</td></tr> <tr><td>Cell 3</td><td>Cell 4</td></tr> </tbody> </table>
  • 11. Z Complete HTML Tables - Example <table> <thead> <tr><td>Column heading</td><td>Column heading</td></tr> </thead> <tfoot> <tr><td>Column footer</td><td>Column footer</td></tr> </tfoot> <tbody> <tr><td>Cell 1</td><td>Cell 2</td></tr> <tr><td>Cell 3</td><td>Cell 4</td></tr> </tbody> </table> Although the footer is before the data in the code, it is displayed last
  • 12. Z Nested Tables • Table Data “cell” (<td>) can contain nested tables (tables within tables): <table border="1"> <tr> <td>Contact:</td> <td> <table border="1"> <tr> <td>First Name</td> <td>Last Name</td> </tr> </table> </td> </tr> </table>
  • 13. Z Nested Tables • Table Data “cell” (<td>) can contain nested tables (tables within tables): <table border="1"> <tr> <td>Contact:</td> <td> <table border="1"> <tr> <td>First Name</td> <td>Last Name</td> </tr> </table> </td> </tr> </table>
  • 14. Z Cells Spacing and Padding • Tables have two important attributes:  cellpadding  Defines the empty space around the cell contents  cellspacing  Defines the empty space between the cells cell cell cell cell cell cell cell cell
  • 15. Z Cell Spacing and Padding - Example <html> <head><title>Table Cells</title></head> <body> <table cellspacing="15" cellpadding="0" bgcolor="red"> <tr><td bgcolor="yellow">First</td> <td bgcolor="yellow">Second</td></tr> </table> <br/> <table cellspacing="0" cellpadding="10" bgcolor="yellow" border="1"> <tr><td>First</td><td>Second</td></tr> </table> </body> </html>
  • 16. Z Cell Spacing and Padding - Example <html> <head><title>Table Cells</title></head> <body> <table cellspacing="15" cellpadding="0" bgcolor="red"> <tr><td bgcolor="yellow">First</td> <td bgcolor="yellow">Second</td></tr> </table> <br/> <table cellspacing="0" cellpadding="10" bgcolor="yellow" border="1"> <tr><td>First</td><td>Second</td></tr> </table> </body> </html>
  • 17. Z Column and Row Span • Tables cells have two important attributes:  rowspan  Defines how many rows the cell occupies  colspan  Defines how many columns the cell occupies cell[1,1] cell[1,2] cell[2,1] colspan="1"colspan="1" colspan="2" cell[1,1] cell[1,2] cell[2,1] rowspan="2" rowspan="1" rowspan="1"
  • 18. Z Column and Row Span - Example <html> <head><title>Colspan and Rowspan</title></head> <body> <br/> <table cellspacing="0" cellpadding="10" border="1"> <tr bgcolor="yellow"><td>Cell[1,1]</td> <td colspan="2">Cell[2,1]</td></tr> <tr bgcolor="#FFCC66"><td>Cell[1,2]</td> <td rowspan="2">Cell[2,2]</td> <td>Cell[3,2]</td></tr> <tr bgcolor="#CCCCFF"><td>Cell[1,3]</td> <td>Cell[2,3]</td></tr> </table> </body> </html>
  • 19. Z Column and Row Span - Example <html> <head><title>Colspan and Rowspan</title></head> <body> <br/> <table cellspacing="0" cellpadding="10" border="1"> <tr bgcolor="yellow"><td>Cell[1,1]</td> <td colspan="2">Cell[2,1]</td></tr> <tr bgcolor="#FFCC66"><td>Cell[1,2]</td> <td rowspan="2">Cell[2,2]</td> <td>Cell[3,2]</td></tr> <tr bgcolor="#CCCCFF"><td>Cell[1,3]</td> <td>Cell[2,3]</td></tr> </table> </body> </html> Cell[2,3]Cell[1,3] Cell[3,2] Cell[2,2] Cell[1,2] Cell[2,1]Cell[1,1]
  • 20. Z HTML Forms • Forms are the primary method for gathering data from site visitors. • Create a form block with • Example: <form></form> <form name="myForm" method="post" action="path/to/some-script.php"> ... </form>
  • 21. Z HTML Forms • Forms are the primary method for gathering data from site visitors. • Create a form block with • Example: <form></form> <form name="myForm" method="post" action="path/to/some-script.php"> ... </form> The "action" attribute tells where the form data should be sent The “method" attribute tells how the form data should be sent – via GET or POST request
  • 22. Z Form Fields • Text fields are single-line entry fields: • Text areas can contain multiple lines of text: • Hidden fields contain data not shown to user: <input type="text" name="FirstName" value="This is a text field"> <textarea name="Comments">This is a multi- line text field</textarea> <input type="hidden" name="Account" value="This is a hidden text field">
  • 23. Z Form Input Controls • Create a checkbox: • Create a radio button: • Radio buttons can be grouped, allowing only one to be selected from a group: <input type="checkbox" name="fruit" value="apple"> <input type="radio" name="title" value="Mr."> <input type="radio" name="town" value="Sofia"> <input type="radio" name="town" value="Varna">
  • 24. Z Form Input Controls • Drop down menu list: • Submit button: <select name="gender"> <option value="Value 1" selected="selected">Male</option> <option value="Value 2">Female</option> <option value="Value 3">Other</option> </select> <input type="submit" name="submitBtn" value="Apply Now">
  • 25. Z Form Input Controls • Reset Button: clears the form • Image Button: acts like submit but image is displayed instead of button • Ordinary Button: used for JavaScript, no default action. <input type="reset" name="resetBtn" value="Clear the form"> <input type="image" src="submit.gif" name="submitBtn" alt="Submit"> <input type="button" value="simple button">
  • 26. Z Form Input Controls • Password input: acts like normal text field but hides the text with * signs • Multiple selected field: code is like drop down menu but displays list of items to select <input type="password" name="pass" value=""> <select name="products" multiple="multiple"> <option value="Value 1" selected="selected">keyboard</option> <option value="Value 2">mouse</option> <option value="Value 3">speakers</option> </select>
  • 27. Z HTML Forms - Example <form method="POST" action="apply-now.php"> <input name="subject" type="hidden" value="Class" /> <p>Degree: <select name="degree"> <option value="BA">Bachelor of Art</option> <option value="BS">Bachelor of Science</option> <option value="MBA" selected="true">Master of Business Administration</option> </select> </p> <p> First Name: <input type="text" name="firstname" /> </p> <p> Last Name: <input type="text" name="lastname" /> </p> <p> Student ID: <input type="password" name="studentid" /> </p>
  • 28. Z HTML Forms - Example <p> Gender: <input name="gender" type="radio" value="Male" checked="true" /> Male <input name="gender" type="radio" value="Female" /> Female </p> <p> E-mail: <input type="text" name="email" value="" /> </p> <p> <textarea name="terms" cols="30" rows="4" readonly="true">TERMS AND CONDITIONS By clicking the Send Form button you agree to submit this form.</textarea> </p> <p> <input type="submit" name="button" value="Send Form" /> </p> </form>
  • 29. Z HTML Forms - Example <p> Gender: <input name="gender" type="radio" value="Male" checked="true" /> Male <input name="gender" type="radio" value="Female" /> Female </p> <p> E-mail: <input type="text" name="email" value="" /> </p> <p> <textarea name="terms" cols="30" rows="4" readonly="true">TERMS AND CONDITIONS By clicking the Send Form button you agree to submit this form.</textarea> </p> <p> <input type="submit" name="button" value="Send Form" /> </p> </form>
  • 30. Z Let’s call it a day, Thank you!

Hinweis der Redaktion

  1. Left angle bracket < Right angle bracket >
  2. https://youtu.be/uBllsVFsUuA