0% found this document useful (0 votes)
971 views

HTML Tutorial in Hindi

This document provides an agenda for an HTML tutorial that includes topics on table tags, colspan and rowspan in tables, examples of colspan and rowspan, and HTML forms. The tutorial covers how to create tables and table cells that span multiple columns and rows using colspan and rowspan attributes. It also explains common form elements like text fields, radio buttons, checkboxes and submit buttons and how to structure a form using the <form> tag and <input>, <label>, <select> and <button> tags. The document concludes with a section on completing an HTML project.

Uploaded by

Sousou Slim
Copyright
© © All Rights Reserved
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)
971 views

HTML Tutorial in Hindi

This document provides an agenda for an HTML tutorial that includes topics on table tags, colspan and rowspan in tables, examples of colspan and rowspan, and HTML forms. The tutorial covers how to create tables and table cells that span multiple columns and rows using colspan and rowspan attributes. It also explains common form elements like text fields, radio buttons, checkboxes and submit buttons and how to structure a form using the <form> tag and <input>, <label>, <select> and <button> tags. The document concludes with a section on completing an HTML project.

Uploaded by

Sousou Slim
Copyright
© © All Rights Reserved
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
You are on page 1/ 12

HTML TUTORIAL

Agenda

1 Table Tags 6 HTML Project

2 Colspan in Table

3 Rowspan in Table

4 Colspan and Rowspan Example

5 HTML Forms

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Table Tags

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Table Tags

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Table Tags - Colspan
Example :-

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Table Tags - Rowspan
Example :-

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Table Tags – Rowspan & Colspan
Example 1 :-

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Forms

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Forms
<form>
• <form> <label for="fname">First name:</label><br>
• <input> <input type="text" id="fname" name="fname" value=“Ritwik"><br>
• <label> <label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value=“Raj">
</form>

<input type="text"> Displays a single-line text input field


<input type="radio"> Displays a radio button (for selecting one of many choices)
<input type="checkbox"> Displays a checkbox (for selecting zero or more of many choices)
<input type="submit"> Displays a submit button (for submitting the form)
<input type="button"> Displays a clickable button

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Forms
<form>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
</form>

<input>
<label>
<select>
<textarea>
<button>
<fieldset>
<legend>
<datalist>
<option>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
PROJECT

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Thank You

Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited

You might also like