SlideShare a Scribd company logo
Introduction to html Y.Ravindra Reddy
https://www.seoskills.in
HTML Overview
https://www.seoskills.in
HTML
Hyper Text Markup Language
https://www.seoskills.in
• HTML stands for Hyper Text Markup Language.
• It is developed by Tim Berner's Lee at W3C (World Wide WebConsortium).
• It is used to create Static Web pages.
• It is a global language i.e., it can be understood by all browsers.
• It is a markup language.
• It is not case-sensitive language.
• The latest version of HTML is HTML 5
• HTML documents are also called as web pages.
• HTML pages can run on any browser.
https://www.seoskills.in
• HTML documents are simply text documents with a specific form
• Documents comprised of content and markup tags
• Content: actual information being conveyed
• The markup tags tell the Web browser how to display the page
• An HTML file must have an htm or html file extension
• An HTML file can be created using a simple text editor
https://www.seoskills.in
HTML Tags
https://www.seoskills.in
• HTML tags are used to mark-up HTML elements
• Surrounded by angle brackets < and >
• HTML tags normally come in pairs, like <tagname> (start tag) and </tagname>
(end tag)
• The text between the start and end tags is the element content
• Not case-sensitive
• Follow the latest web standards:
• Use lowercase tags
https://www.seoskills.in
Tag Attributes
https://www.seoskills.in
• Tags can have attributes that provide additional information to an HTML element
• Attributes always come in name/value pairs like: name=“value”
• Attributes are always specified in the start tag
• Attribute values should always be enclosed in quotes. Double quotes are most
common.
• Also case-insensitive: however, lowercase is recommended
• <tagname a1=“v1” a2=“v2”></tagname>
• For example, <table border=“0”> is a start tag that defines a table that has no borders
https://www.seoskills.in
HTML Document Structure
https://www.seoskills.in
Entire document enclosed within <html> and </html> tags
Two subparts:
1. Head
Enclosed within <head> and </head>
Within the head, more tags can be used to specify title of the page, meta-information,
etc.
2. Body
Enclosed within <body> and </body>
Within the body, content is to be displayed
Other tags can be embedded in the body
https://www.seoskills.in
What We’ll Study?
https://www.seoskills.in
• HTML Elements
• HTML Headings
• HTML Paragraphs
• HTML Formatting
• HTML Styles
• HTML Images
• HTML Tables
• HTML Lists
• HTML Forms
• HTML Colors
https://www.seoskills.in
HTML Layout
https://www.seoskills.in
One common way is to use HTML tables to format the layout of an HTML page
The trick is to use a table without borders, and maybe a little extra cell-padding
• Keep screen resolution in mind
• Use color to define spaces
• Align your images
• Balance the graphics and text on a page
• Think about text width – scan length 7 – 11 words
• Centering text is inadvisable
• Here is the link: http://webdesign.about.com/od/layout/a/aa062104.htm
https://www.seoskills.in
HTML Frames
https://www.seoskills.in
HTML frames are a means of having several browser windows open within a
single larger window
Each HTML document is called a frame
Disadvantages:
Must keep track of more HTML documents
Difficult to print the entire page
https://www.seoskills.in
HTML Page Structure
https://www.seoskills.in
HTML Page Structure
https://www.seoskills.in
Below is a visualization of an HTML page structure:
<html>
<body>
<h1>This a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
https://www.seoskills.in
HTML Versions
https://www.seoskills.in
Since the early days of the web, there have been many versions of HTML
Version Year
HTML 1991
HTML+ 1993
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 1.0 2000
HTML5 2012
https://www.seoskills.in
The <!DOCTYPE> Declaration
https://www.seoskills.in
The <!DOCTYPE> Declaration
https://www.seoskills.in
The <!DOCTYPE> declaration helps the browser to display a web page orrectly.
There are many different documents on the web, and a browser can only display an
HTML page 100% correctly if it knows the HTML type and version used.
https://www.seoskills.in
Common Declarations
HTML5
<!DOCTYPE html>
HTML 4.01
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
XHTML 1.0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
https://www.seoskills.in
HTML code can be written in:
• Notepad
• Notepad++
• Microsoft Visual Studio
• Adobe Dreamweaver
• Microsoft Expression Web
• Edit Plus
• Text Pad
• Notepad++ etc.
However, for learning HTML we recommend a text editor like Notepad (PC) or TextEdit
(Mac). We believe using a simple text editor is a good way to learn HTML.
https://www.seoskills.in
HTML and XHTML Full References
https://www.seoskills.in
Full Reference from W3schools:
http://www.w3schools.com/tags/
Test your HTML
http://www.w3schools.com/html/html_whyusehtml4.asp
https://www.seoskills.in
https://www.seoskills.in

More Related Content

What's hot (20)

PPSX
Introduction to css
Evolution Network
 
PPSX
Html introduction
Dalia Elbadry
 
PPTX
Html forms
Himanshu Pathak
 
PPTX
Cascading Style Sheet (CSS)
AakankshaR
 
PPT
Css Ppt
Hema Prasanth
 
ODP
HTML5
Hatem Mahmoud
 
PPTX
Cascading style sheet
Michael Jhon
 
PPT
Intro Html
Chidanand Byahatti
 
PPTX
html-css
Dhirendra Chauhan
 
PDF
HTML CSS Basics
Mai Moustafa
 
PDF
Basic html
Nicha Jutasirivongse
 
PPT
cascading style sheet ppt
abhilashagupta
 
PPT
Introduction to HTML
MayaLisa
 
PPT
Presentation on HTML
satvirsandhu9
 
PDF
Intro to HTML and CSS basics
Eliran Eliassy
 
PDF
Introduction to html
eShikshak
 
Introduction to css
Evolution Network
 
Html introduction
Dalia Elbadry
 
Html forms
Himanshu Pathak
 
Cascading Style Sheet (CSS)
AakankshaR
 
Css Ppt
Hema Prasanth
 
Cascading style sheet
Michael Jhon
 
Intro Html
Chidanand Byahatti
 
HTML CSS Basics
Mai Moustafa
 
cascading style sheet ppt
abhilashagupta
 
Introduction to HTML
MayaLisa
 
Presentation on HTML
satvirsandhu9
 
Intro to HTML and CSS basics
Eliran Eliassy
 
Introduction to html
eShikshak
 

Similar to Introduction to html course digital markerters (20)

PDF
Vskills certified html designer Notes
Vskills
 
PPTX
About html
Manvigangwar
 
PPT
Web forms and html (lect 1)
Salman Memon
 
PDF
HTML.pdf
aneebkmct
 
PPTX
Xhtml and html5 basics
messinam
 
PDF
Slides 2 - HTML
Massimo Callisto
 
PDF
Html - Tutorial
adelaticleanu
 
PPTX
Web technologies-course 02.pptx
Stefan Oprea
 
PPTX
HTML.pptx
asdfhgjh1
 
PPTX
Learn html Basics
McSoftsis
 
PDF
html complete notes
onactiontv
 
PDF
html compete notes basic to advanced
virtualworld14
 
PPTX
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
ManuAbraham17
 
PDF
Html tutorial
FLYMAN TECHNOLOGY LIMITED
 
PDF
Html tutorial
Vinay Vinnu
 
PDF
Html tutorial
Hassan Nasir
 
PPTX
web programming, Introduction to html tags
E.M.G.yadava womens college
 
PPT
Html ppt computer
Anmol Pant
 
PPT
Lesson 5 HTML 5 for NewbiesBasic Hello world.ppt
CherryLim21
 
Vskills certified html designer Notes
Vskills
 
About html
Manvigangwar
 
Web forms and html (lect 1)
Salman Memon
 
HTML.pdf
aneebkmct
 
Xhtml and html5 basics
messinam
 
Slides 2 - HTML
Massimo Callisto
 
Html - Tutorial
adelaticleanu
 
Web technologies-course 02.pptx
Stefan Oprea
 
HTML.pptx
asdfhgjh1
 
Learn html Basics
McSoftsis
 
html complete notes
onactiontv
 
html compete notes basic to advanced
virtualworld14
 
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
ManuAbraham17
 
Html tutorial
Vinay Vinnu
 
Html tutorial
Hassan Nasir
 
web programming, Introduction to html tags
E.M.G.yadava womens college
 
Html ppt computer
Anmol Pant
 
Lesson 5 HTML 5 for NewbiesBasic Hello world.ppt
CherryLim21
 
Ad

More from SEO SKills (20)

PPTX
SEO Course outline - SEO SKILLS ACADEMY
SEO SKills
 
PPTX
Doodle art introduction
SEO SKills
 
PPTX
Html5 structure tags
SEO SKills
 
PPTX
Html5 essentials
SEO SKills
 
PPTX
Introduction to web technologies
SEO SKills
 
PPTX
Adobe illustrator CC 2017 introduction _ SEOSKILLS Hyderabad
SEO SKills
 
PPTX
Graphical user interface _ SEOSKILLS Hyderabad
SEO SKills
 
PPTX
Creative process_ SEOSKILLS
SEO SKills
 
PPTX
History of computers
SEO SKills
 
PPTX
Types of software
SEO SKills
 
PPTX
Introduction to color theory for Multimedia Students
SEO SKills
 
PPTX
Overview of video file formats for Multimedia Students
SEO SKills
 
PPTX
introduction to audio formats - Multimedia Students
SEO SKills
 
PPTX
Overview about multimedia for BMM Students and Teachers
SEO SKills
 
PPTX
Networking fundamentals for multimedia students and teachers
SEO SKills
 
PPTX
Ms dos commands for Multimedia Students and Facultyes
SEO SKills
 
PPTX
Elements of digital images day06
SEO SKills
 
PPTX
Computer fundamentals day02
SEO SKills
 
PPTX
Computer fundamentals for Multimedia Students
SEO SKills
 
PPTX
Best SEO Curse PPT
SEO SKills
 
SEO Course outline - SEO SKILLS ACADEMY
SEO SKills
 
Doodle art introduction
SEO SKills
 
Html5 structure tags
SEO SKills
 
Html5 essentials
SEO SKills
 
Introduction to web technologies
SEO SKills
 
Adobe illustrator CC 2017 introduction _ SEOSKILLS Hyderabad
SEO SKills
 
Graphical user interface _ SEOSKILLS Hyderabad
SEO SKills
 
Creative process_ SEOSKILLS
SEO SKills
 
History of computers
SEO SKills
 
Types of software
SEO SKills
 
Introduction to color theory for Multimedia Students
SEO SKills
 
Overview of video file formats for Multimedia Students
SEO SKills
 
introduction to audio formats - Multimedia Students
SEO SKills
 
Overview about multimedia for BMM Students and Teachers
SEO SKills
 
Networking fundamentals for multimedia students and teachers
SEO SKills
 
Ms dos commands for Multimedia Students and Facultyes
SEO SKills
 
Elements of digital images day06
SEO SKills
 
Computer fundamentals day02
SEO SKills
 
Computer fundamentals for Multimedia Students
SEO SKills
 
Best SEO Curse PPT
SEO SKills
 
Ad

Recently uploaded (20)

PDF
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PPTX
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PPTX
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
How to Set Up Tags in Odoo 18 - Odoo Slides
Celine George
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 

Introduction to html course digital markerters