SlideShare a Scribd company logo
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

PDF/UA Support in Word 2016
PDF/UA Support in Word 2016PDF/UA Support in Word 2016
PDF/UA Support in Word 2016
Microsoft Accessibility
 
PDF/UA Support in Word 2016
PDF/UA Support in Word 2016PDF/UA Support in Word 2016
PDF/UA Support in Word 2016
Microsoft Accessibility
 
Html
HtmlHtml
HTML
HTMLHTML
Html basics
Html basicsHtml basics
Html basics
Vjay Vijju
 
S3 HTML Structure and Formatting
S3 HTML Structure and FormattingS3 HTML Structure and Formatting
S3 HTML Structure and Formatting
SabahtHussein
 
Lawbook online-user-guide
Lawbook online-user-guideLawbook online-user-guide
Lawbook online-user-guide
Sherief Razzaque
 
Web technology practical list
Web technology practical listWeb technology practical list
Web technology practical listdesaipratu10
 
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 wordRaghu nath
 
Mengelola isi halaman web1 eng
Mengelola isi halaman web1 engMengelola isi halaman web1 eng
Mengelola isi halaman web1 engEko Supriyadi
 
HTML Basic Tags PDF by CodeHim
HTML Basic Tags PDF by CodeHimHTML Basic Tags PDF by CodeHim
HTML Basic Tags PDF by CodeHim
AsifMughal24
 
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
Rohit Bhaya
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Shehzad Yaqoob
 
2.4 Text in HTML
2.4 Text in HTML2.4 Text in HTML
2.4 Text in HTML
Intan Jameel
 
MCB 2019S Writing Skills Prac - 2011
MCB 2019S Writing Skills Prac - 2011MCB 2019S Writing Skills Prac - 2011
MCB 2019S Writing Skills Prac - 2011
UCT
 
Website designing
Website designingWebsite designing
Website designing
Jaipal Dhobale
 
How to insert footnotes and bibliography
How to insert footnotes and bibliographyHow to insert footnotes and bibliography
How to insert footnotes and bibliography
Grace Van Niekerk
 
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
Anne Perera
 

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

html-basic.pdf
html-basic.pdfhtml-basic.pdf
html-basic.pdf
rahulcoder
 
XML
XMLXML
xml introduction in web technologies subject
xml introduction in web technologies subjectxml introduction in web technologies subject
xml introduction in web technologies subject
UdayKumar693239
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntax
MohammadRafsunIslam
 
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
AAFREEN SHAIKH
 
html
htmlhtml
Wp unit 1 (1)
Wp  unit 1 (1)Wp  unit 1 (1)
Wp unit 1 (1)
Bhavsingh Maloth
 
About html
About htmlAbout html
About html
Manvigangwar
 
HTML
HTMLHTML
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
Nimrakhan89
 
Krazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazykoder struts2 ui_tags
Krazykoder struts2 ui_tagsKrazy Koder
 
HTML Basic Tags
HTML Basic Tags HTML Basic Tags
HTML Basic Tags
Nisa Soomro
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
VaibhavSingh887876
 
Lecture1
Lecture1Lecture1
Lecture1
Ahmed Abozeed
 
Html book2
Html book2Html book2
Html book2
Diksha Garg
 

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

Rohit RajSingh_ApplicationForm.pdf
Rohit RajSingh_ApplicationForm.pdfRohit RajSingh_ApplicationForm.pdf
Rohit RajSingh_ApplicationForm.pdf
Rohit Singh
 
date2.docx
date2.docxdate2.docx
date2.docx
Rohit Singh
 
Data entry exclusive+
Data entry exclusive+ Data entry exclusive+
Data entry exclusive+
Rohit Singh
 
Assignment 1
Assignment 1Assignment 1
Assignment 1
Rohit Singh
 
Custom pagination
Custom paginationCustom pagination
Custom pagination
Rohit Singh
 
Sql exception and class notfoundexception
Sql exception and class notfoundexceptionSql exception and class notfoundexception
Sql exception and class notfoundexception
Rohit Singh
 
Angular Part 3 (Basic knowledge)
Angular Part 3 (Basic knowledge)Angular Part 3 (Basic knowledge)
Angular Part 3 (Basic knowledge)
Rohit Singh
 
Project ppt, Learn Project Java
Project ppt, Learn Project JavaProject ppt, Learn Project Java
Project ppt, Learn Project Java
Rohit Singh
 
5g networking technology
5g networking technology5g networking technology
5g networking technology
Rohit Singh
 
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)
Rohit Singh
 
First program of C ( Complete Explanation )
First program of C ( Complete Explanation )First program of C ( Complete Explanation )
First program of C ( Complete Explanation )
Rohit Singh
 
C language
C languageC language
C language
Rohit Singh
 
CCNA Course Training Presentation
CCNA Course Training PresentationCCNA Course Training Presentation
CCNA Course Training Presentation
Rohit Singh
 
Software testing basic
Software testing basicSoftware testing basic
Software testing basic
Rohit Singh
 
Core java interview questions
Core java interview questionsCore java interview questions
Core java interview questions
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

BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
heavyhaig
 
Fundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptxFundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptx
manasideore6
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Divyam548318
 
Self-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptxSelf-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptx
iemerc2024
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
Kamal Acharya
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
aqil azizi
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
ChristineTorrepenida1
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 

Recently uploaded (20)

BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
 
Fundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptxFundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptx
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
 
Self-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptxSelf-Control of Emotions by Slidesgo.pptx
Self-Control of Emotions by Slidesgo.pptx
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 

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