SlideShare a Scribd company logo
1 of 31
Presented By : RohitRaj
5/28/2019 1
SMS Institute of Technology,
lucknow
 What is HTML ?
 HTML attributes ?
 HTML Tag ?
 Uses of List in HTML ?
 Table
 How to use form tag in HTML ?
 What is Frame ?
5/28/2019 2
SMS Institute of Technology,
lucknow
 HTML is not a programming language, It is a
markup language used for describing web
pages.
 A markup language is a set of markup tags.
 HTML used markup tags to describe web
pages.
5/28/2019 3
SMS Institute of Technology,
lucknow
 Attributes provides additional information
about an element, It’s always used with
starting tag.
 Example –
<startingTag attributeName=“value”>
</endingTag>
5/28/2019 4
SMS Institute of Technology,
lucknow
 HTML documents contain HTML tags and plain text
used for describing web pages.
 HTML tags are words.
 Types of HTML Tags -
1. Heading Tag
2. Linebreak Tag
3. Paragraph Tag
4. pre_formated Tag
5. Del Tag
6. Image tag
7. Text formatting tag
5/28/2019 5
SMS Institute of Technology,
lucknow
 Heading Tag-
It’s uses for heading in HTML
documents. HTML contain <h1>to <h6>
tag for heading with ending tags.
 HTML Linebreak Tag-
It is used to define a
single line break, It is a empty tag because
It has no ending tag.
5/28/2019 6
SMS Institute of Technology,
lucknow
 Paragraph Tags-
It defines a paragraph it gives
some margin before and after a paragraph.
e.g. –
<p>This is a paragraph</p>
<p>This is another paragraph</p>
 Pre_formated Tag-
It’s displayed the content in
a fixed bit and font size.
e.g.-
<pre>
content with fixed bit and font size </pre>
5/28/2019 7
SMS Institute of Technology,
lucknow
 Image Tag-
It is used to display the image on
a webpage or HTML document. It is an empty
tag because It has no ending tag.
e.g. –
<img src=“URL Address” width=“” height=“”>
oR
<img
src=“D:folderNameImageName.jpg”border=
“2” width=“50%” height=“60%”>
5/28/2019 8
SMS Institute of Technology,
lucknow
 Anchor Tag-
Anchor tag is used to create a link
or hyperlink, With the help of hyper link you
can jump to another document or specific
part of same document.
e.g.-
<a href=“URL Address” attributeList>
Visible Text like link
</a>
5/28/2019 9
SMS Institute of Technology,
lucknow
 Bold Tag
 Italic Tag
 Underline Tag
 Small Tag
 Subscripted Tag
 Superscripted tag
 Deleted Tag
 Marked Tag
5/28/2019 10
SMS Institute of Technology,
lucknow
 List is a collection of element or items .
 There are three types of list, they are-
1. Ordered list
2. Unordered list
3. Difinition list
5/28/2019 11
SMS Institute of Technology,
lucknow
 Ordered list is a collection of elements or
items that have special order or sequence.
 It is created by using <ol> tag with ending
tag and each list item is created by <li>tag
with ending tag within the <ol>tag.
e.g.-
<ol type=“a”>
<li> First item</li>
</ol>
5/28/2019 12
SMS Institute of Technology,
lucknow
 Unordered list is a collection of elements or
item that have no special order or sequence.
 It is created by <ul>tag, It is not a empty tag.
 Each list item is created by using<li>tag ,It’s
not a empty tag.
 Bydefault each list item is mark with bullet.
5/28/2019 13
SMS Institute of Technology,
lucknow
 In definition list where element are listed like
in a dictionary.
 It uses three tags.
<dl> </dl>
<dt> </dt>
<dd> </dd>
5/28/2019 14
SMS Institute of Technology,
lucknow
<html>
<body>
<dl>
<dt>HTML</dt>
<dd>hyper text markup language</dd>
<dt>XML</dt>
<dd>Extension markup language</dd>
</dl>
</body>
</html>
5/28/2019 15
SMS Institute of Technology,
lucknow
 Table allows to arrange the data like text
image, link etc into rows and column.
 HTML Table are created using
<table></table>tag.
 A table tag is use <tr></tr> and
<td></td>tag for creating a table row and
table column respectively.
5/28/2019 16
SMS Institute of Technology,
lucknow
 Table tag attribute are –
1. Align=“left/right/center”
2. Bgcolor=“Red/yellow”
3. Border=“any digit”
4. Bordercolor=“red’
5. Cellspacing
6.Cellpadding
7.Background
5/28/2019 17
SMS Institute of Technology,
lucknow
 They are listed as -
1. Align=“left/right/center”
2. Valign=“top/middle/bottom”
3. bgcolor=“ yellow “
5/28/2019 18
SMS Institute of Technology,
lucknow
 They are listed as -
1. Align=“left/right/center”
2. Valign=“top/middle/bottom”
3. bgcolor=“purple”
4. Rowspan=“digit”
5. colspan=“Number”
5/28/2019 19
SMS Institute of Technology,
lucknow
 Form is used to collect some data from the
user during user registration and feedback.
 <form></form> tag is used to create a
HTML form.
 It is a container that includes all forms
element like textfield and checkbox etc.
 Attributes of form tag are-
name, method, enctype, target, action
5/28/2019 20
SMS Institute of Technology,
lucknow
 <input> tag is used to create a form element.
 It is a empty tag.
 E.g. –
<input type=“password” name=“psw” size=“”
maxlength=““ readonly value=“”>
5/28/2019 21
SMS Institute of Technology,
lucknow
1) Textbox/ text field
2) Password
3) Radio Button
4) Checkbox
5) Submit Button
6) Reset Button
7) Textarea / Multiline text
8) Combo box / list box /Drop down box
9) Hidden text field
10) File Upload
5/28/2019 22
SMS Institute of Technology,
lucknow
<html>
<head><title>Student Login </title></head>
<body><form
name=“”method=“”action=“”enctype=“”target=””>
LogIn &nbsp;&nbsp;&nbsp;&nbsp;
<input type=“text”name=“Login”Value=“”><br/>
Password &nbsp;<input type=“password”
name=“pwd” value=“”><br/><input type=“Reset”
value=“Reset” name=“r”><input type=“submit”
value=“submit” name=“sub”></form></body>
</html>
5/28/2019 23
SMS Institute of Technology,
lucknow
 HTML frame are used to divide your browser
window into multiple section.
 It’s uses <frameset> tag for doing this.
 Cols, rows, border, frame border, frame
spacing, these are the attributes of
<frameset> tag.
5/28/2019 24
SMS Institute of Technology,
lucknow
 <frame> tag defines which HTML document
shall open into a particular frame.
 Src, name, scrolling, noresize, target, top
these are the attributes of <frame> tag.
5/28/2019 25
SMS Institute of Technology,
lucknow
<html>
<frameset row=“20%,*”>
<frame src=“head.html”>
<frameset cols=“30%,*”>
<frame src=“left.html” name=“left”>
<frame src=“right.html” name=“right”>
</frameset>
</frameset>
</html>
5/28/2019 26
SMS Institute of Technology,
lucknow
<html>
<body>
<h1>SMS Institute of Technology<h1>
</body>
</html>
5/28/2019 27
SMS Institute of Technology,
lucknow
<html>
<body>
<ul>
<li>
<a href=“Tech.html “
target=“left”>B.Tech</a>
</li>
</ul>
</body>
</html>
5/28/2019 28
SMS Institute of Technology,
lucknow
<html>
<body>
<ol>
<li><a href=“one.html”>1’st semester</a></li>
<li><a href=“two.html”>2nd semester</a></li>
<li><a href=“three.html”>3rd semester</a></li>
<li><a href=“four.html”>4th semester</a></li>
<li><a href=“five.html”>5th semester</a></li>
<li><a href=“six.html>6th semester</a></li>
<li><a href=“seven.html”>7th semester</a></li>
<li><a href=“eight.html”>8th semester</a></li>
</ol>
</body>
</html>
5/28/2019 29
SMS Institute of Technology,
lucknow
5/28/2019 30
SMS Institute of Technology,
lucknow
5/28/2019 31
SMS Institute of Technology,
lucknow

More Related Content

What's hot

Web technology practical list
Web technology practical listWeb technology practical list
Web technology practical list
desaipratu10
 
Create an index and update an index in word
Create an index and update an index in wordCreate an index and update an index in word
Create an index and update an index in word
Raghu nath
 
Mengelola isi halaman web1 eng
Mengelola isi halaman web1 engMengelola isi halaman web1 eng
Mengelola isi halaman web1 eng
Eko Supriyadi
 

What's hot (20)

PDF/UA Support in Word 2016
PDF/UA Support in Word 2016PDF/UA Support in Word 2016
PDF/UA Support in Word 2016
 
PDF/UA Support in Word 2016
PDF/UA Support in Word 2016PDF/UA Support in Word 2016
PDF/UA Support in Word 2016
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
HTML
HTMLHTML
HTML
 
Html basics
Html basicsHtml basics
Html basics
 
S3 HTML Structure and Formatting
S3 HTML Structure and FormattingS3 HTML Structure and Formatting
S3 HTML Structure and Formatting
 
Lawbook online-user-guide
Lawbook online-user-guideLawbook online-user-guide
Lawbook online-user-guide
 
Web technology practical list
Web technology practical listWeb technology practical list
Web technology practical list
 
Create an index and update an index in word
Create an index and update an index in wordCreate an index and update an index in word
Create an index and update an index in word
 
Mengelola isi halaman web1 eng
Mengelola isi halaman web1 engMengelola isi halaman web1 eng
Mengelola isi halaman web1 eng
 
HTML Basic Tags PDF by CodeHim
HTML Basic Tags PDF by CodeHimHTML Basic Tags PDF by CodeHim
HTML Basic Tags PDF by CodeHim
 
Factors Determining Foreign Investment in a Country
Factors Determining Foreign Investment in a CountryFactors Determining Foreign Investment in a Country
Factors Determining Foreign Investment in a Country
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
2.4 Text in HTML
2.4 Text in HTML2.4 Text in HTML
2.4 Text in HTML
 
MCB 2019S Writing Skills Prac - 2011
MCB 2019S Writing Skills Prac - 2011MCB 2019S Writing Skills Prac - 2011
MCB 2019S Writing Skills Prac - 2011
 
Html
HtmlHtml
Html
 
Website designing
Website designingWebsite designing
Website designing
 
How to insert footnotes and bibliography
How to insert footnotes and bibliographyHow to insert footnotes and bibliography
How to insert footnotes and bibliography
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L exam
 

Similar to Html Basic

Krazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazykoder struts2 ui_tags
Krazykoder struts2 ui_tags
Krazy Koder
 

Similar to Html Basic (20)

html-basic.pdf
html-basic.pdfhtml-basic.pdf
html-basic.pdf
 
XML
XMLXML
XML
 
HTML
HTMLHTML
HTML
 
HTML
HTMLHTML
HTML
 
xml introduction in web technologies subject
xml introduction in web technologies subjectxml introduction in web technologies subject
xml introduction in web technologies subject
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntax
 
Tags in html
Tags in htmlTags in html
Tags in html
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
 
html
htmlhtml
html
 
Wp unit 1 (1)
Wp  unit 1 (1)Wp  unit 1 (1)
Wp unit 1 (1)
 
XML
XMLXML
XML
 
About html
About htmlAbout html
About html
 
HTML
HTMLHTML
HTML
 
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
 
Krazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazykoder struts2 ui_tags
Krazykoder struts2 ui_tags
 
HTML Basic Tags
HTML Basic Tags HTML Basic Tags
HTML Basic Tags
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Html
HtmlHtml
Html
 
Lecture1
Lecture1Lecture1
Lecture1
 
Html book2
Html book2Html book2
Html book2
 

More from Rohit Singh

More from Rohit Singh (15)

Rohit RajSingh_ApplicationForm.pdf
Rohit RajSingh_ApplicationForm.pdfRohit RajSingh_ApplicationForm.pdf
Rohit RajSingh_ApplicationForm.pdf
 
date2.docx
date2.docxdate2.docx
date2.docx
 
Data entry exclusive+
Data entry exclusive+ Data entry exclusive+
Data entry exclusive+
 
Assignment 1
Assignment 1Assignment 1
Assignment 1
 
Custom pagination
Custom paginationCustom pagination
Custom pagination
 
Sql exception and class notfoundexception
Sql exception and class notfoundexceptionSql exception and class notfoundexception
Sql exception and class notfoundexception
 
Angular Part 3 (Basic knowledge)
Angular Part 3 (Basic knowledge)Angular Part 3 (Basic knowledge)
Angular Part 3 (Basic knowledge)
 
Project ppt, Learn Project Java
Project ppt, Learn Project JavaProject ppt, Learn Project Java
Project ppt, Learn Project Java
 
5g networking technology
5g networking technology5g networking technology
5g networking technology
 
Learn c language Important topics ( Easy & Logical, & smart way of learning)
Learn c language Important topics ( Easy & Logical, & smart way of learning)Learn c language Important topics ( Easy & Logical, & smart way of learning)
Learn c language Important topics ( Easy & Logical, & smart way of learning)
 
First program of C ( Complete Explanation )
First program of C ( Complete Explanation )First program of C ( Complete Explanation )
First program of C ( Complete Explanation )
 
C language
C languageC language
C language
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training Presentation
 
Software testing basic
Software testing basicSoftware testing basic
Software testing basic
 
Core java interview questions
Core java interview questionsCore java interview questions
Core java interview questions
 

Recently uploaded

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 

Recently uploaded (20)

Computer Graphics Introduction To Curves
Computer Graphics Introduction To CurvesComputer Graphics Introduction To Curves
Computer Graphics Introduction To Curves
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
fitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .pptfitting shop and tools used in fitting shop .ppt
fitting shop and tools used in fitting shop .ppt
 
Linux Systems Programming: Inter Process Communication (IPC) using Pipes
Linux Systems Programming: Inter Process Communication (IPC) using PipesLinux Systems Programming: Inter Process Communication (IPC) using Pipes
Linux Systems Programming: Inter Process Communication (IPC) using Pipes
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
Ghuma $ Russian Call Girls Ahmedabad ₹7.5k Pick Up & Drop With Cash Payment 8...
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
UNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptxUNIT 4 PTRP final Convergence in probability.pptx
UNIT 4 PTRP final Convergence in probability.pptx
 

Html Basic

  • 1. Presented By : RohitRaj 5/28/2019 1 SMS Institute of Technology, lucknow
  • 2.  What is HTML ?  HTML attributes ?  HTML Tag ?  Uses of List in HTML ?  Table  How to use form tag in HTML ?  What is Frame ? 5/28/2019 2 SMS Institute of Technology, lucknow
  • 3.  HTML is not a programming language, It is a markup language used for describing web pages.  A markup language is a set of markup tags.  HTML used markup tags to describe web pages. 5/28/2019 3 SMS Institute of Technology, lucknow
  • 4.  Attributes provides additional information about an element, It’s always used with starting tag.  Example – <startingTag attributeName=“value”> </endingTag> 5/28/2019 4 SMS Institute of Technology, lucknow
  • 5.  HTML documents contain HTML tags and plain text used for describing web pages.  HTML tags are words.  Types of HTML Tags - 1. Heading Tag 2. Linebreak Tag 3. Paragraph Tag 4. pre_formated Tag 5. Del Tag 6. Image tag 7. Text formatting tag 5/28/2019 5 SMS Institute of Technology, lucknow
  • 6.  Heading Tag- It’s uses for heading in HTML documents. HTML contain <h1>to <h6> tag for heading with ending tags.  HTML Linebreak Tag- It is used to define a single line break, It is a empty tag because It has no ending tag. 5/28/2019 6 SMS Institute of Technology, lucknow
  • 7.  Paragraph Tags- It defines a paragraph it gives some margin before and after a paragraph. e.g. – <p>This is a paragraph</p> <p>This is another paragraph</p>  Pre_formated Tag- It’s displayed the content in a fixed bit and font size. e.g.- <pre> content with fixed bit and font size </pre> 5/28/2019 7 SMS Institute of Technology, lucknow
  • 8.  Image Tag- It is used to display the image on a webpage or HTML document. It is an empty tag because It has no ending tag. e.g. – <img src=“URL Address” width=“” height=“”> oR <img src=“D:folderNameImageName.jpg”border= “2” width=“50%” height=“60%”> 5/28/2019 8 SMS Institute of Technology, lucknow
  • 9.  Anchor Tag- Anchor tag is used to create a link or hyperlink, With the help of hyper link you can jump to another document or specific part of same document. e.g.- <a href=“URL Address” attributeList> Visible Text like link </a> 5/28/2019 9 SMS Institute of Technology, lucknow
  • 10.  Bold Tag  Italic Tag  Underline Tag  Small Tag  Subscripted Tag  Superscripted tag  Deleted Tag  Marked Tag 5/28/2019 10 SMS Institute of Technology, lucknow
  • 11.  List is a collection of element or items .  There are three types of list, they are- 1. Ordered list 2. Unordered list 3. Difinition list 5/28/2019 11 SMS Institute of Technology, lucknow
  • 12.  Ordered list is a collection of elements or items that have special order or sequence.  It is created by using <ol> tag with ending tag and each list item is created by <li>tag with ending tag within the <ol>tag. e.g.- <ol type=“a”> <li> First item</li> </ol> 5/28/2019 12 SMS Institute of Technology, lucknow
  • 13.  Unordered list is a collection of elements or item that have no special order or sequence.  It is created by <ul>tag, It is not a empty tag.  Each list item is created by using<li>tag ,It’s not a empty tag.  Bydefault each list item is mark with bullet. 5/28/2019 13 SMS Institute of Technology, lucknow
  • 14.  In definition list where element are listed like in a dictionary.  It uses three tags. <dl> </dl> <dt> </dt> <dd> </dd> 5/28/2019 14 SMS Institute of Technology, lucknow
  • 15. <html> <body> <dl> <dt>HTML</dt> <dd>hyper text markup language</dd> <dt>XML</dt> <dd>Extension markup language</dd> </dl> </body> </html> 5/28/2019 15 SMS Institute of Technology, lucknow
  • 16.  Table allows to arrange the data like text image, link etc into rows and column.  HTML Table are created using <table></table>tag.  A table tag is use <tr></tr> and <td></td>tag for creating a table row and table column respectively. 5/28/2019 16 SMS Institute of Technology, lucknow
  • 17.  Table tag attribute are – 1. Align=“left/right/center” 2. Bgcolor=“Red/yellow” 3. Border=“any digit” 4. Bordercolor=“red’ 5. Cellspacing 6.Cellpadding 7.Background 5/28/2019 17 SMS Institute of Technology, lucknow
  • 18.  They are listed as - 1. Align=“left/right/center” 2. Valign=“top/middle/bottom” 3. bgcolor=“ yellow “ 5/28/2019 18 SMS Institute of Technology, lucknow
  • 19.  They are listed as - 1. Align=“left/right/center” 2. Valign=“top/middle/bottom” 3. bgcolor=“purple” 4. Rowspan=“digit” 5. colspan=“Number” 5/28/2019 19 SMS Institute of Technology, lucknow
  • 20.  Form is used to collect some data from the user during user registration and feedback.  <form></form> tag is used to create a HTML form.  It is a container that includes all forms element like textfield and checkbox etc.  Attributes of form tag are- name, method, enctype, target, action 5/28/2019 20 SMS Institute of Technology, lucknow
  • 21.  <input> tag is used to create a form element.  It is a empty tag.  E.g. – <input type=“password” name=“psw” size=“” maxlength=““ readonly value=“”> 5/28/2019 21 SMS Institute of Technology, lucknow
  • 22. 1) Textbox/ text field 2) Password 3) Radio Button 4) Checkbox 5) Submit Button 6) Reset Button 7) Textarea / Multiline text 8) Combo box / list box /Drop down box 9) Hidden text field 10) File Upload 5/28/2019 22 SMS Institute of Technology, lucknow
  • 23. <html> <head><title>Student Login </title></head> <body><form name=“”method=“”action=“”enctype=“”target=””> LogIn &nbsp;&nbsp;&nbsp;&nbsp; <input type=“text”name=“Login”Value=“”><br/> Password &nbsp;<input type=“password” name=“pwd” value=“”><br/><input type=“Reset” value=“Reset” name=“r”><input type=“submit” value=“submit” name=“sub”></form></body> </html> 5/28/2019 23 SMS Institute of Technology, lucknow
  • 24.  HTML frame are used to divide your browser window into multiple section.  It’s uses <frameset> tag for doing this.  Cols, rows, border, frame border, frame spacing, these are the attributes of <frameset> tag. 5/28/2019 24 SMS Institute of Technology, lucknow
  • 25.  <frame> tag defines which HTML document shall open into a particular frame.  Src, name, scrolling, noresize, target, top these are the attributes of <frame> tag. 5/28/2019 25 SMS Institute of Technology, lucknow
  • 26. <html> <frameset row=“20%,*”> <frame src=“head.html”> <frameset cols=“30%,*”> <frame src=“left.html” name=“left”> <frame src=“right.html” name=“right”> </frameset> </frameset> </html> 5/28/2019 26 SMS Institute of Technology, lucknow
  • 27. <html> <body> <h1>SMS Institute of Technology<h1> </body> </html> 5/28/2019 27 SMS Institute of Technology, lucknow
  • 29. <html> <body> <ol> <li><a href=“one.html”>1’st semester</a></li> <li><a href=“two.html”>2nd semester</a></li> <li><a href=“three.html”>3rd semester</a></li> <li><a href=“four.html”>4th semester</a></li> <li><a href=“five.html”>5th semester</a></li> <li><a href=“six.html>6th semester</a></li> <li><a href=“seven.html”>7th semester</a></li> <li><a href=“eight.html”>8th semester</a></li> </ol> </body> </html> 5/28/2019 29 SMS Institute of Technology, lucknow
  • 30. 5/28/2019 30 SMS Institute of Technology, lucknow
  • 31. 5/28/2019 31 SMS Institute of Technology, lucknow