SlideShare a Scribd company logo
Introduction toIntroduction to
HTMLHTML
Made by Anmol Pant, Class 8C,
Roll NO.-31
HTML
HTML, which stands for HyperText Markup Language, and it is
used to create hypertext documents for the world wide web.
It provides a means to create structured documents by
denoting structural semantics for text such as headings,
paragraphs, lists, links, quotes, and other items. It allows
images and objects to be embedded and can be used to create
interactive forms. It is written in the form of HTML elements
consisting of "tags" surrounded by angle brackets within the
web page content. A tag is a markup which indicates how the
contents of the webpage should look like.
All the HTML documents are created in a Word
processing software such as Notepad and are saved with the
extension of .htm or .html
Basic HTML Commands
Basic steps: using tags
HTML uses tags to communicate to the client (browser) how to display text
and images. Tags are contained in < > symbols. In most cases you start with
the beginning tag, put in the word or words that will be affected by this
tag, and at the end of the string of word(s), you place a closing tag.
For example, to create a title for a document you would do the following:
<title>My First HTML Document</title>
The closing tag normally contains a "/" before the directive to indicate the
termination of the action.
HTML tags are not case-sensitive, although URLs generally are. In most
cases (with the exception of preformatted text) HTML collapses many
spaces to one space and does not read blank lines. However, when you write
your text you should leave several blank lines between paragraphs to make
editing your HTML source document easier.
The HTML tag
Although not currently required by all clients, the <html> tag signals the point where text
should start being interpreted as HTML code. It's probably a good idea to include it in all
your documents now, so you don't have to go back to your files and add it later.
The <html> tag is usually placed on the first line of your document. At the end of your
document you should close with the </html> tag.
The head tag
Just like the header of a memo, the head of an HTML document contains special
information, like its title. The head of a document is demarcated by <head> and </head>
respectively.
For the purposes of this class, only the title tag, below, should be included in the document
head. A typical head section might look like
<html>
<head>
<title>My First HTML Document</title>
</head>
Types of HTML tags
Container tags
• Container tags have a
beginning and an end tag
,the end tag is similar to the
beginning tag but with a “/”
sign in front of it.
• Examples:-
• <b> and </b>
• <table>and</table> etc…
Empty tags
• Empty tags are standalone
tags and do not have an end
tag.
• Examples:-
• <br>
• <p>
Attributes
• Attributes provide additional information to
the tag. A tag becomes more meaningful with
the help of an attribute.
• Example- a simple <p> tag will create a new
paragraph but when we add the align
attribute to it, we can set the alignment of
the paragraph like <p align=“Left” will make
the paragraph aligned to the left of the
browser window.
Titles
A title tag allows you to specify a Document Title in your browser window. When
people make hotlists, this title is what they see in their list after they add your
document. The format is:
<title>My First HTML Document</title>
Remember, the title usually doesn't appear in the document itself, but in a title box
or bar at the top of the window.
The body tag
Like you might expect, the body tags <body> and </body> define the beginning and end
of the bulk of your document. All your text, images, and links will be in the body of
the document.
The body should start after the head. A typical page might begin like
<html>
<head>
<title>My First HTML Document</title>
</head>
<body>
Headers
There are up to six levels of headers that can be used in your document, h1 through h6.
Header 1 is the largest header and they get progressively smaller through header 6. Below are
each of the six headers and how they usually appear in relation to one another.
<h1>This is a header 1 tag</h1>
This is a header 1 tag
<h2>This is a header 2 tag</h2>
This is a header 2 tag
<h3>This is a header 3 tag</h3>
This is a header 3 tag
<h4>This is a header 4 tag</h4>
This is a header 4 tag
<h5>This is a header 5 tag</h5>
This is a header 5 tag
<h6>This is a header 6 tag</h6>
This is a header 6 tag
Paragraphs
In HTML, a paragraph tag <p> should be put at the end of every
paragraph of "normal" text (normal being defined as not already
having a tag associated with it).
<p> causes a line break and adds a trailing blank line
<br> causes a line break with no trailing blank line
As a convenience to yourself and others who might have to edit
your HTML documents, it's a very good idea to put two or three
blank lines between paragraphs to facilitate editing.
Boldface and Italics
You can add emphasis to text by using the boldface and italic tags or the
emphasis and strong tags.
There is an underline tag as well, but most people don't use it since text
that is linked is often underlined. The potential for confusion and the
archaic nature of underlining in general make it a poor marker for
emphasis.
When using these tags, you usually cannot (and probably should not) have
text that is both boldface and italics; the last tag encountered is usually
the tag that is displayed. For example, if you had a boldface tag followed
immediately by an italic tag, the tagged word would appear in italics.
Physical tags
This is a <b>boldface</b> tag.
This is how boldfacing appears.
This is an <i>italic</i> tag.
This is how italics appear.
Lists
There is an easy way in HTML to have numbered, unnumbered, and definition lists. In
addition, you can nest lists within lists.
When using lists, you have no control over the amount of space between the bullet or list
number, HTML automatically does this for you. Neither (as yet) do you have control over
what type of bullet will be used as each browser is different.
Unnumbered lists
Unnumbered lists are started with the <ul> tag, followed by the actual list items, which
are marked with the <li> tag. The list is ended with the ending tag </ul>.
For example, here is an unnumbered list with three items:
<ul>
<li> list item 1
<li> list item 2
<li> list item 3
</ul>
Here is how that list would display:
* list item 1
* list item 2
* list item 3
*
Numbered lists
Here is the same list using a numbered list format:
<ol>
<li> list item 1
<li> list item 2
<li> list item 3
</ol>
Here is how that list would display:
1. list item 1
2. list item 2
3. list item 3
3. Definition lists
Definition lists allow you to indent without necessarily having to use bullets.
<dl>
<dt> This is a term
<dd> This is a definition
<dd> And yet another definition
<dt> Another term
<dd> Another definition
</dl>
And here is how this would be displayed
This is a term
This is a definition.
And yet another definition.
Another term
Another definition
Horizontal Rule
To separate sections in a document, you can insert a horizontal rule tag <hr>. A
horizontal rule is displayed as follows:
Addresses
The <address> tag normally appears at the end of a document and is used most
frequently to mark information on contacting the author or institution that has
supplied this information. Anything contained within the address tag appears in italics.
The address tag is another example of a logical tag, and although it currently does
nothing but make text appear in italics, this could change as HTML code advances.
Here is an example of how an address might appear:
<address>
Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu
</address>
And it would appear as:
Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu
Comments
It is possible to include comments in a source HTML document
that do not appear when seen through a browser. This is most
useful for giving warnings and special instructions to future
editors of your document.
Comments take the form:
<!-----This comment will not appear in the browser----->
The comment can even break lines
<!----This comment won't be seen by
anyone either even though it's broken between lines--->
bgcolor=" "
Defines the default background colour of the screen used for the page.
Expressed as a named colour or as the hexadecimal code of a specific colour in
#RRGGBB format.
<BODY>
Examples:
bgcolor="white" bgcolor="#ffffff"
bgproperties=
Used in conjunction with the background parameter in the Internet Explorer
browser, this command attribute will allow a background image to float on a page like
a watermark.
fixed
<BODY>
Example:
bgproperties=fixed
border=
Defines the width in pixels of the border surrounding a bordered object.
Expressed as the number of pixels.
All commands using this parameter.
Example:
border=10
bordercolor=" "
Defines the color applied to the border of a bordered object.
Expressed as a named color or as the hexadecimal code of a specific color in
#RRGGBB format. The attribute is recognized only by the Internet Explorer browser.
<FRAME> <TABLE> <TD> <TH> <TR>
Examples:
bordercolor="blue" bordercolor="#0000ff"
Cell padding=
Defines the standoff or amount of white space between the edges of a table cell
and the table data.
Expressed as the number of pixels.
<TABLE>
Example:
cellpadding=10
Cell spacing=
Defines the amount of space or gutter to allow between table cells in a table.
Expressed as the number of pixels.
<TABLE>
Example:
cellspacing=5
face=" "
Defines a single font face or a list of font faces to be used. Only face names
exactly matching those installed on the user's microcomputer can be displayed.
The first matching font face presented in the font name list is accepted and
displayed.
Any font face name.
<BASEFONT> <FONT>
Example:
face="geneva, arial, helvetica, helv, futura"
frame value.
<COMMANDS>
vspace=
Defines the vertical standoff or amount of white space surrounding an object
or element.
Expressed in pixels.
All commands using this parameter.
Example:
vspace=10
width=
Defines the width of an object or element.
Expressed either in pixels or as a percent of the space available for
display.
All commands using this parameter.
Examples:
width=600width=75%
Thank you
Ad

More Related Content

What's hot (20)

Html coding
Html codingHtml coding
Html coding
Briana VanBuskirk
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
Sayan De
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
Manoj kumar Deswal
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
eShikshak
 
Html ppt
Html pptHtml ppt
Html ppt
santosh lamba
 
PPT on Basic HTML Tags
PPT on Basic HTML TagsPPT on Basic HTML Tags
PPT on Basic HTML Tags
VinitaPaliwal1
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
AAKASH KUMAR
 
Links in Html
Links in HtmlLinks in Html
Links in Html
sadeenedian08
 
Html project
Html projectHtml project
Html project
arsh7511
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
Knoldus Inc.
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
Pranay Agrawal
 
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
NextGenr
 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Tags in html
Tags in htmlTags in html
Tags in html
Balakumaran Arunachalam
 
Html links
Html linksHtml links
Html links
JayjZens
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
Aarti P
 
Html
HtmlHtml
Html
Abhishek Kesharwani
 

Similar to Html ppt computer (20)

Htmlppt 100604051515-phpapp01
Htmlppt 100604051515-phpapp01Htmlppt 100604051515-phpapp01
Htmlppt 100604051515-phpapp01
ramya116
 
web technology
web technologyweb technology
web technology
Ankit Dubey
 
Html basics
Html basicsHtml basics
Html basics
Vjay Vijju
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
aneebkmct
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
Rai Saheb Bhanwar Singh College Nasrullaganj
 
Html ppt
Html pptHtml ppt
Html ppt
Sanmuga Nathan
 
Html Ppt
Html PptHtml Ppt
Html Ppt
Sanmuga Nathan
 
Html presentation
Html presentationHtml presentation
Html presentation
Prashanthi Mamidisetty
 
Html basics
Html basicsHtml basics
Html basics
codegracer
 
static dynamic html tags
static dynamic html tagsstatic dynamic html tags
static dynamic html tags
teach4uin
 
static dynamic html tags
 static dynamic html tags static dynamic html tags
static dynamic html tags
teach4uin
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
JitendraYadav351971
 
Html tags
Html tagsHtml tags
Html tags
Noble Anshu
 
html
htmlhtml
html
Soumya Vijoy
 
HTML Basics.pdf
HTML Basics.pdfHTML Basics.pdf
HTML Basics.pdf
SofiaRehman2
 
Hyper Text Mark-up Language
Hyper Text Mark-up Language Hyper Text Mark-up Language
Hyper Text Mark-up Language
Fritz Earlin Therese Lapitaje Pondantes
 
HTML
HTMLHTML
HTML
Rai Saheb Bhanwar Singh College Nasrullaganj
 
Html basics
Html basicsHtml basics
Html basics
Yernur Kassymbayev
 
Html basics
Html basicsHtml basics
Html basics
Zewaqar Khan
 
Html basics
Html basicsHtml basics
Html basics
Vivek Khandelwal
 
Ad

More from Anmol Pant (9)

Periodic classification of elements
Periodic classification of elementsPeriodic classification of elements
Periodic classification of elements
Anmol Pant
 
दुख का अधिकार
दुख का अधिकारदुख का अधिकार
दुख का अधिकार
Anmol Pant
 
History of japan
History of japanHistory of japan
History of japan
Anmol Pant
 
History of cricket
History of cricketHistory of cricket
History of cricket
Anmol Pant
 
Quadrilaterals & their properties(anmol)
Quadrilaterals & their properties(anmol)Quadrilaterals & their properties(anmol)
Quadrilaterals & their properties(anmol)
Anmol Pant
 
Html 1
Html 1Html 1
Html 1
Anmol Pant
 
Direct and inverse variations
Direct and inverse variationsDirect and inverse variations
Direct and inverse variations
Anmol Pant
 
Combustion and flame
Combustion and flameCombustion and flame
Combustion and flame
Anmol Pant
 
Kriya hindi
Kriya hindiKriya hindi
Kriya hindi
Anmol Pant
 
Periodic classification of elements
Periodic classification of elementsPeriodic classification of elements
Periodic classification of elements
Anmol Pant
 
दुख का अधिकार
दुख का अधिकारदुख का अधिकार
दुख का अधिकार
Anmol Pant
 
History of japan
History of japanHistory of japan
History of japan
Anmol Pant
 
History of cricket
History of cricketHistory of cricket
History of cricket
Anmol Pant
 
Quadrilaterals & their properties(anmol)
Quadrilaterals & their properties(anmol)Quadrilaterals & their properties(anmol)
Quadrilaterals & their properties(anmol)
Anmol Pant
 
Direct and inverse variations
Direct and inverse variationsDirect and inverse variations
Direct and inverse variations
Anmol Pant
 
Combustion and flame
Combustion and flameCombustion and flame
Combustion and flame
Anmol Pant
 
Ad

Recently uploaded (20)

Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptxLecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Arshad Shaikh
 
Herbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptxHerbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptx
RAJU THENGE
 
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdfRanking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Rafael Villas B
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
2025 The Senior Landscape and SET plan preparations.pptx
2025 The Senior Landscape and SET plan preparations.pptx2025 The Senior Landscape and SET plan preparations.pptx
2025 The Senior Landscape and SET plan preparations.pptx
mansk2
 
How to Create A Todo List In Todo of Odoo 18
How to Create A Todo List In Todo of Odoo 18How to Create A Todo List In Todo of Odoo 18
How to Create A Todo List In Todo of Odoo 18
Celine George
 
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
TechSoup
 
All About the 990 Unlocking Its Mysteries and Its Power.pdf
All About the 990 Unlocking Its Mysteries and Its Power.pdfAll About the 990 Unlocking Its Mysteries and Its Power.pdf
All About the 990 Unlocking Its Mysteries and Its Power.pdf
TechSoup
 
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptxU3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
Mayuri Chavan
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
Form View Attributes in Odoo 18 - Odoo Slides
Form View Attributes in Odoo 18 - Odoo SlidesForm View Attributes in Odoo 18 - Odoo Slides
Form View Attributes in Odoo 18 - Odoo Slides
Celine George
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
Computer crime and Legal issues Computer crime and Legal issues
Computer crime and Legal issues Computer crime and Legal issuesComputer crime and Legal issues Computer crime and Legal issues
Computer crime and Legal issues Computer crime and Legal issues
Abhijit Bodhe
 
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and GuestsLDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDM Mia eStudios
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
How to Add Customer Note in Odoo 18 POS - Odoo Slides
How to Add Customer Note in Odoo 18 POS - Odoo SlidesHow to Add Customer Note in Odoo 18 POS - Odoo Slides
How to Add Customer Note in Odoo 18 POS - Odoo Slides
Celine George
 
Lecture 4 INSECT CUTICLE and moulting.pptx
Lecture 4 INSECT CUTICLE and moulting.pptxLecture 4 INSECT CUTICLE and moulting.pptx
Lecture 4 INSECT CUTICLE and moulting.pptx
Arshad Shaikh
 
Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptxLecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Lecture 2 CLASSIFICATION OF PHYLUM ARTHROPODA UPTO CLASSES & POSITION OF_1.pptx
Arshad Shaikh
 
Herbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptxHerbs Used in Cosmetic Formulations .pptx
Herbs Used in Cosmetic Formulations .pptx
RAJU THENGE
 
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdfRanking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Ranking_Felicidade_2024_com_Educacao_Marketing Educacional_V2.pdf
Rafael Villas B
 
E-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26ASE-Filing_of_Income_Tax.pptx and concept of form 26AS
E-Filing_of_Income_Tax.pptx and concept of form 26AS
Abinash Palangdar
 
Origin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theoriesOrigin of Brahmi script: A breaking down of various theories
Origin of Brahmi script: A breaking down of various theories
PrachiSontakke5
 
2025 The Senior Landscape and SET plan preparations.pptx
2025 The Senior Landscape and SET plan preparations.pptx2025 The Senior Landscape and SET plan preparations.pptx
2025 The Senior Landscape and SET plan preparations.pptx
mansk2
 
How to Create A Todo List In Todo of Odoo 18
How to Create A Todo List In Todo of Odoo 18How to Create A Todo List In Todo of Odoo 18
How to Create A Todo List In Todo of Odoo 18
Celine George
 
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
Drive Supporter Growth from Awareness to Advocacy with TechSoup Marketing Ser...
TechSoup
 
All About the 990 Unlocking Its Mysteries and Its Power.pdf
All About the 990 Unlocking Its Mysteries and Its Power.pdfAll About the 990 Unlocking Its Mysteries and Its Power.pdf
All About the 990 Unlocking Its Mysteries and Its Power.pdf
TechSoup
 
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptxU3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
U3 ANTITUBERCULAR DRUGS Pharmacology 3.pptx
Mayuri Chavan
 
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptxTERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
TERMINOLOGIES,GRIEF PROCESS AND LOSS AMD ITS TYPES .pptx
PoojaSen20
 
Form View Attributes in Odoo 18 - Odoo Slides
Form View Attributes in Odoo 18 - Odoo SlidesForm View Attributes in Odoo 18 - Odoo Slides
Form View Attributes in Odoo 18 - Odoo Slides
Celine George
 
spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)spinal cord disorders (Myelopathies and radiculoapthies)
spinal cord disorders (Myelopathies and radiculoapthies)
Mohamed Rizk Khodair
 
Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)Myasthenia gravis (Neuromuscular disorder)
Myasthenia gravis (Neuromuscular disorder)
Mohamed Rizk Khodair
 
Computer crime and Legal issues Computer crime and Legal issues
Computer crime and Legal issues Computer crime and Legal issuesComputer crime and Legal issues Computer crime and Legal issues
Computer crime and Legal issues Computer crime and Legal issues
Abhijit Bodhe
 
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and GuestsLDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDMMIA Reiki News Ed3 Vol1 For Team and Guests
LDM Mia eStudios
 
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
How to Clean Your Contacts Using the Deduplication Menu in Odoo 18
Celine George
 
Rock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian HistoryRock Art As a Source of Ancient Indian History
Rock Art As a Source of Ancient Indian History
Virag Sontakke
 
How to Add Customer Note in Odoo 18 POS - Odoo Slides
How to Add Customer Note in Odoo 18 POS - Odoo SlidesHow to Add Customer Note in Odoo 18 POS - Odoo Slides
How to Add Customer Note in Odoo 18 POS - Odoo Slides
Celine George
 
Lecture 4 INSECT CUTICLE and moulting.pptx
Lecture 4 INSECT CUTICLE and moulting.pptxLecture 4 INSECT CUTICLE and moulting.pptx
Lecture 4 INSECT CUTICLE and moulting.pptx
Arshad Shaikh
 

Html ppt computer

  • 1. Introduction toIntroduction to HTMLHTML Made by Anmol Pant, Class 8C, Roll NO.-31
  • 2. HTML HTML, which stands for HyperText Markup Language, and it is used to create hypertext documents for the world wide web. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes, and other items. It allows images and objects to be embedded and can be used to create interactive forms. It is written in the form of HTML elements consisting of "tags" surrounded by angle brackets within the web page content. A tag is a markup which indicates how the contents of the webpage should look like. All the HTML documents are created in a Word processing software such as Notepad and are saved with the extension of .htm or .html
  • 3. Basic HTML Commands Basic steps: using tags HTML uses tags to communicate to the client (browser) how to display text and images. Tags are contained in < > symbols. In most cases you start with the beginning tag, put in the word or words that will be affected by this tag, and at the end of the string of word(s), you place a closing tag. For example, to create a title for a document you would do the following: <title>My First HTML Document</title> The closing tag normally contains a "/" before the directive to indicate the termination of the action. HTML tags are not case-sensitive, although URLs generally are. In most cases (with the exception of preformatted text) HTML collapses many spaces to one space and does not read blank lines. However, when you write your text you should leave several blank lines between paragraphs to make editing your HTML source document easier.
  • 4. The HTML tag Although not currently required by all clients, the <html> tag signals the point where text should start being interpreted as HTML code. It's probably a good idea to include it in all your documents now, so you don't have to go back to your files and add it later. The <html> tag is usually placed on the first line of your document. At the end of your document you should close with the </html> tag. The head tag Just like the header of a memo, the head of an HTML document contains special information, like its title. The head of a document is demarcated by <head> and </head> respectively. For the purposes of this class, only the title tag, below, should be included in the document head. A typical head section might look like <html> <head> <title>My First HTML Document</title> </head>
  • 5. Types of HTML tags Container tags • Container tags have a beginning and an end tag ,the end tag is similar to the beginning tag but with a “/” sign in front of it. • Examples:- • <b> and </b> • <table>and</table> etc… Empty tags • Empty tags are standalone tags and do not have an end tag. • Examples:- • <br> • <p>
  • 6. Attributes • Attributes provide additional information to the tag. A tag becomes more meaningful with the help of an attribute. • Example- a simple <p> tag will create a new paragraph but when we add the align attribute to it, we can set the alignment of the paragraph like <p align=“Left” will make the paragraph aligned to the left of the browser window.
  • 7. Titles A title tag allows you to specify a Document Title in your browser window. When people make hotlists, this title is what they see in their list after they add your document. The format is: <title>My First HTML Document</title> Remember, the title usually doesn't appear in the document itself, but in a title box or bar at the top of the window. The body tag Like you might expect, the body tags <body> and </body> define the beginning and end of the bulk of your document. All your text, images, and links will be in the body of the document. The body should start after the head. A typical page might begin like <html> <head> <title>My First HTML Document</title> </head> <body>
  • 8. Headers There are up to six levels of headers that can be used in your document, h1 through h6. Header 1 is the largest header and they get progressively smaller through header 6. Below are each of the six headers and how they usually appear in relation to one another. <h1>This is a header 1 tag</h1> This is a header 1 tag <h2>This is a header 2 tag</h2> This is a header 2 tag <h3>This is a header 3 tag</h3> This is a header 3 tag <h4>This is a header 4 tag</h4> This is a header 4 tag <h5>This is a header 5 tag</h5> This is a header 5 tag <h6>This is a header 6 tag</h6> This is a header 6 tag
  • 9. Paragraphs In HTML, a paragraph tag <p> should be put at the end of every paragraph of "normal" text (normal being defined as not already having a tag associated with it). <p> causes a line break and adds a trailing blank line <br> causes a line break with no trailing blank line As a convenience to yourself and others who might have to edit your HTML documents, it's a very good idea to put two or three blank lines between paragraphs to facilitate editing.
  • 10. Boldface and Italics You can add emphasis to text by using the boldface and italic tags or the emphasis and strong tags. There is an underline tag as well, but most people don't use it since text that is linked is often underlined. The potential for confusion and the archaic nature of underlining in general make it a poor marker for emphasis. When using these tags, you usually cannot (and probably should not) have text that is both boldface and italics; the last tag encountered is usually the tag that is displayed. For example, if you had a boldface tag followed immediately by an italic tag, the tagged word would appear in italics. Physical tags This is a <b>boldface</b> tag. This is how boldfacing appears. This is an <i>italic</i> tag. This is how italics appear.
  • 11. Lists There is an easy way in HTML to have numbered, unnumbered, and definition lists. In addition, you can nest lists within lists. When using lists, you have no control over the amount of space between the bullet or list number, HTML automatically does this for you. Neither (as yet) do you have control over what type of bullet will be used as each browser is different. Unnumbered lists Unnumbered lists are started with the <ul> tag, followed by the actual list items, which are marked with the <li> tag. The list is ended with the ending tag </ul>. For example, here is an unnumbered list with three items: <ul> <li> list item 1 <li> list item 2 <li> list item 3 </ul> Here is how that list would display: * list item 1 * list item 2 * list item 3
  • 12. * Numbered lists Here is the same list using a numbered list format: <ol> <li> list item 1 <li> list item 2 <li> list item 3 </ol> Here is how that list would display: 1. list item 1 2. list item 2 3. list item 3
  • 13. 3. Definition lists Definition lists allow you to indent without necessarily having to use bullets. <dl> <dt> This is a term <dd> This is a definition <dd> And yet another definition <dt> Another term <dd> Another definition </dl> And here is how this would be displayed This is a term This is a definition. And yet another definition. Another term Another definition
  • 14. Horizontal Rule To separate sections in a document, you can insert a horizontal rule tag <hr>. A horizontal rule is displayed as follows: Addresses The <address> tag normally appears at the end of a document and is used most frequently to mark information on contacting the author or institution that has supplied this information. Anything contained within the address tag appears in italics. The address tag is another example of a logical tag, and although it currently does nothing but make text appear in italics, this could change as HTML code advances. Here is an example of how an address might appear: <address> Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu </address> And it would appear as: Introduction to HTML / Pat Androget / Pat_Androget@ncsu.edu
  • 15. Comments It is possible to include comments in a source HTML document that do not appear when seen through a browser. This is most useful for giving warnings and special instructions to future editors of your document. Comments take the form: <!-----This comment will not appear in the browser-----> The comment can even break lines <!----This comment won't be seen by anyone either even though it's broken between lines--->
  • 16. bgcolor=" " Defines the default background colour of the screen used for the page. Expressed as a named colour or as the hexadecimal code of a specific colour in #RRGGBB format. <BODY> Examples: bgcolor="white" bgcolor="#ffffff" bgproperties= Used in conjunction with the background parameter in the Internet Explorer browser, this command attribute will allow a background image to float on a page like a watermark. fixed <BODY> Example: bgproperties=fixed
  • 17. border= Defines the width in pixels of the border surrounding a bordered object. Expressed as the number of pixels. All commands using this parameter. Example: border=10 bordercolor=" " Defines the color applied to the border of a bordered object. Expressed as a named color or as the hexadecimal code of a specific color in #RRGGBB format. The attribute is recognized only by the Internet Explorer browser. <FRAME> <TABLE> <TD> <TH> <TR> Examples: bordercolor="blue" bordercolor="#0000ff"
  • 18. Cell padding= Defines the standoff or amount of white space between the edges of a table cell and the table data. Expressed as the number of pixels. <TABLE> Example: cellpadding=10 Cell spacing= Defines the amount of space or gutter to allow between table cells in a table. Expressed as the number of pixels. <TABLE> Example: cellspacing=5
  • 19. face=" " Defines a single font face or a list of font faces to be used. Only face names exactly matching those installed on the user's microcomputer can be displayed. The first matching font face presented in the font name list is accepted and displayed. Any font face name. <BASEFONT> <FONT> Example: face="geneva, arial, helvetica, helv, futura" frame value. <COMMANDS>
  • 20. vspace= Defines the vertical standoff or amount of white space surrounding an object or element. Expressed in pixels. All commands using this parameter. Example: vspace=10 width= Defines the width of an object or element. Expressed either in pixels or as a percent of the space available for display. All commands using this parameter. Examples: width=600width=75%
  翻译: