SlideShare a Scribd company logo
Intro to
HTML
Ajay Khatri
Assistant Professor
Information Technology Department
Acropolis Institute of Technology & Research
www.ajaykhatri.in
Why Learn HTML?
1. Running a blog on a CMS.
2. Working with a developer and
want to understand how to talk
with them
3. Web designer looking to
understand how things get built
What We’ll Learn
1. What is HTML
2. How to mark up a
document
3. How a page is
structured
HTML is the
Skeleton of
Web pages.
Introduction to HTML
HTML is a
Markup
Language
Introduction to HTML
HTML uses markup
tags to describe
elements on a page.
<tag>Text</tag>
Anatomy of a Tag
<tag>Text</tag>
Start Tag EndTag
About 80 Tags
a
abbr
acronym
address
area
b
base
bdo
big
blockquote
body
br
button
caption
c i t e
code
col
colgroup
dd
del
dfn
div
d l
DOCTYPE
dt
em
f ieldset
form
h1, h2, h3,
h4, h5, and
h6
head
html
hr
i
img
input
ins
kbd
label
legend
l i
l i n k
map
meta
noscript
object
o l
optgroup
option
p
param
pre
q
samp
script
select
small
span
strong
style
sub
sup
table
tbody
td
textarea
t f o o t
th
thead
t i t l e
t r
t t
u l
var
Some Are Used More Often
a
abbr
acronym
address
area
b
base
bdo
big
blockquote
body
br
button
caption
c i t e
code
col
colgroup
dd
del
dfn
div
d l
DOCTYPE
dt
em
f ieldset
form
h1, h2, h3,
h4, h5, and
h6
head
html
hr
i
img
input
ins
kbd
label
legend
l i
l i n k
map
meta
noscript
object
ol
optgroup
option
p
param
pre
q
samp
script
select
small
span
strong
style
sub
sup
table
tbody
td
textarea
t f o o t
th
thead
t i t l e
t r
t t
ul
var
Nesting Tags
<i><b>italic & bold</b></i>
Self-closing Tags
Some tags don’t wrap
around anything. These
are self-closing tags.
<img src=“”> or <img src=“” />
Tags Can Have Attributes
Attributes are additional
information added toa tag.
<img src=“”>
<a href=“” class=“”>
<div class=“”>
Tags are used to
give semantic
meaning to text.
e.g., paragraph, header,
bold, emphasis, etc.
Let’s Learn By Example
Introduction to HTML
Starting the HTML
<!DOCTYPE html>
<html>
<body>
<! —-‐ cont ent —-‐>
</body>
</html>
Let’s talk about
Headings, Paragraphs,
and Formatting.
Headings
Headings are defined with
the <h1> to <h6> tags.
<h1> defines the most
important heading. <h6>
defines the least important
heading.
DO NOT useheadings
to make text BIGGER
or BOLDER.
Styling should be done
with CSS.
Paragraphs
Paragraphs are defined
with the <p> tag.
<p>This is some stuff </p>
Introduction to HTML
Introduction to HTML
Links
Links are defined with the
<a> tag with the href
pointing to the
destination.
<a href=“http://foo.com”>Text</a>
Two Varieties of Links
Absolute & Relative.
Absolute Links
Absolute links point
directly to the destination.
<a href=“http://foo.com”>Text</a>
Typicallystartswitthhttp://
Relative Links
Relative links are based on
where the destination is
from where you are.
<a href=“/folder/page.html”>Text</a>
<a href=“../page.html”>Text</a>
Introduction to HTML
Introduction to HTML
Images
Images are self-closing tags
<img
<img
src=“mocha.jpg”
src=“mocha.jpg”
/>
alt=“Mocha the
cat” />
Introduction to HTML
Introduction to HTML
Lists
Lists come in two varieties,
ordered and unordered.
1. Item
2. Item
3. Item
•Item
•Item
•Item
List Items
List items use the <li> tag.
<li>Loves food</li>
<li>Good at cuddling</li>
<li>Chews wires</li>
Lists Need An Outer Tag
Ordered lists use the <ol>
tag.
<ol>
<li>Loves food</li>
<li>Good at cuddling</li>
<li>Chews wires</li>
</ol>
Lists Need An Outer Tag
Unordered lists use the
<ul> tag.
<ul>
<li>Loves food</li>
<li>Good at cuddling</li>
<li>Chews wires</li>
</ul>
Introduction to HTML
Introduction to HTML
Comments
The comment tag is useful
for making notes in HTML.
<!-- comment here -->
Further Learning
W3Schools (free)
Android App (HTML Prog)
https://play.google.com/store/apps/details?id=learn.apps.htmlprogramming
Thanks You

More Related Content

PDF
HTML and CSS crash course!
PDF
Intro to HTML and CSS basics
PPTX
(Fast) Introduction to HTML & CSS
PDF
CSS Day: CSS Grid Layout
PPTX
PDF
Introduction to HTML and CSS
PPTX
Html n CSS
PPTX
Basic Html Knowledge for students
HTML and CSS crash course!
Intro to HTML and CSS basics
(Fast) Introduction to HTML & CSS
CSS Day: CSS Grid Layout
Introduction to HTML and CSS
Html n CSS
Basic Html Knowledge for students

What's hot (20)

PDF
Intro to HTML & CSS
ODP
CSS Basics
PDF
Html / CSS Presentation
PPTX
PPT
Cascading Style Sheets (CSS) help
PPTX
Basic HTML
PPTX
Html5 semantics
PPTX
PPSX
Introduction to css
PDF
Frontend Crash Course: HTML and CSS
PDF
PPT
Eye catching HTML BASICS tips: Learn easily
PPTX
HTML (Web) basics for a beginner
PPT
CSS Basics
PPTX
Html, CSS & Web Designing
Intro to HTML & CSS
CSS Basics
Html / CSS Presentation
Cascading Style Sheets (CSS) help
Basic HTML
Html5 semantics
Introduction to css
Frontend Crash Course: HTML and CSS
Eye catching HTML BASICS tips: Learn easily
HTML (Web) basics for a beginner
CSS Basics
Html, CSS & Web Designing
Ad

Similar to Introduction to HTML (20)

PDF
Intro to HTML
PPTX
HTML.pptx
PDF
Html full
PDF
Class Intro / HTML Basics
PPTX
Lecture3-Intro to HTMLLecture3-Intr.pptx
PPTX
DOCX
Html.docx
PPTX
Html1
DOC
Html introduction
PPTX
HTML by Telerik Akademy
PPTX
PPT
Html ppt computer
PPTX
1-22-24 INFO 2106.pptx
PPTX
html (1) (1).pptx for all students to learn
PPTX
html.pptx class notes to prepare html completly
PDF
Internet Programming
DOC
Learn html from www
PPTX
EBRE TABOR UNIVERSITY Gafat Institute of Technology Department of Information...
Intro to HTML
HTML.pptx
Html full
Class Intro / HTML Basics
Lecture3-Intro to HTMLLecture3-Intr.pptx
Html.docx
Html1
Html introduction
HTML by Telerik Akademy
Html ppt computer
1-22-24 INFO 2106.pptx
html (1) (1).pptx for all students to learn
html.pptx class notes to prepare html completly
Internet Programming
Learn html from www
EBRE TABOR UNIVERSITY Gafat Institute of Technology Department of Information...
Ad

More from Ajay Khatri (9)

PDF
Ajay khatri resume august 2021
PPTX
Lecture 1 Introduction C++
PPTX
Competitive Programming Guide
PPTX
Zotero : Personal Research Assistant
PPTX
Basics of C programming - day 2
PPTX
Introduction To MySQL Lecture 1
PPTX
Introduction to PHP Lecture 1
PPTX
Basics of Java Script (JS)
PPTX
CSS Basics (Cascading Style Sheet)
Ajay khatri resume august 2021
Lecture 1 Introduction C++
Competitive Programming Guide
Zotero : Personal Research Assistant
Basics of C programming - day 2
Introduction To MySQL Lecture 1
Introduction to PHP Lecture 1
Basics of Java Script (JS)
CSS Basics (Cascading Style Sheet)

Recently uploaded (20)

PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Pre independence Education in Inndia.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
Insiders guide to clinical Medicine.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PPTX
Cell Types and Its function , kingdom of life
PDF
Business Ethics Teaching Materials for college
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Abdominal Access Techniques with Prof. Dr. R K Mishra
Pre independence Education in Inndia.pdf
human mycosis Human fungal infections are called human mycosis..pptx
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
RMMM.pdf make it easy to upload and study
TR - Agricultural Crops Production NC III.pdf
Basic Mud Logging Guide for educational purpose
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Complications of Minimal Access Surgery at WLH
Insiders guide to clinical Medicine.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
VCE English Exam - Section C Student Revision Booklet
Module 4: Burden of Disease Tutorial Slides S2 2025
Microbial diseases, their pathogenesis and prophylaxis
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Cell Types and Its function , kingdom of life
Business Ethics Teaching Materials for college

Introduction to HTML