SlideShare a Scribd company logo
HTML
HYPER TEXT MARKUP LANGUAGE
INTRODUCTION
WHAT IS HTML?
•HTML is the standard markup language
for creating Web pages.
•HTML describes the structure of a Web
page
•HTML consists of a series of elements
telling the browser how to display the
content
SAMPLE
HTML
DOCUMENT
A declaration that defines
that this document is an
HTML5 document
<html>
element is the
root element
of an HTML
page
<head> element
contains meta
information about
the HTML page
<body> element
defines the
document's body,
and is a container for
all the visible
contents
<Title> element specifies a title for
the HTML page (which is shown in
the browser's title bar or in the
page's tab)
WHAT IS AN ELEMENT?
•An HTML element is defined by a start
tag, some content, and an end tag:
<tagname> Content goes here... </tagname>
(start) (end)

More Related Content

PPTX
html tags chapter 1.pptx
PPTX
HTML Intro
PPTX
Html5.pptx
PPTX
Basics of HTML
PPTX
Html5 tutorial
PDF
Presentation1.pdf
PPTX
presentation_web_design_basic_1595487867_382444.pptx
PPTX
DICT-Standard-Template-4-3-ratio.pptx
html tags chapter 1.pptx
HTML Intro
Html5.pptx
Basics of HTML
Html5 tutorial
Presentation1.pdf
presentation_web_design_basic_1595487867_382444.pptx
DICT-Standard-Template-4-3-ratio.pptx

Similar to introduction to hypertext markup language.pptx (20)

PPTX
INTRODUCTION TO HTML.pptx
PPTX
HTML.pptx
PPTX
HTML doc introduction and basics ppt.pptx
PPTX
EBRE TABOR UNIVERSITY Gafat Institute of Technology Department of Information...
PPTX
HTML5 Topic 1
PPT
1. html introduction
PPTX
Introduction to HTML
PPT
BASICS - HTML.ppt in web technology in engineering
PPTX
Html presentation
PPTX
WEB TECHNOLOGY in recent years 122334445
PPTX
PPTX
Hypertext Markup Language Hypertext Markup Language
PPTX
2. HTML Basic unit2 fundamentals of computer
DOC
Learn html from www
PPTX
Ankit (221348051) BCA-Aiml.pptx
PDF
Html tutorial
PPTX
Learning html. (Part- 1)
PDF
Html - Tutorial
PPSX
Html introduction
INTRODUCTION TO HTML.pptx
HTML.pptx
HTML doc introduction and basics ppt.pptx
EBRE TABOR UNIVERSITY Gafat Institute of Technology Department of Information...
HTML5 Topic 1
1. html introduction
Introduction to HTML
BASICS - HTML.ppt in web technology in engineering
Html presentation
WEB TECHNOLOGY in recent years 122334445
Hypertext Markup Language Hypertext Markup Language
2. HTML Basic unit2 fundamentals of computer
Learn html from www
Ankit (221348051) BCA-Aiml.pptx
Html tutorial
Learning html. (Part- 1)
Html - Tutorial
Html introduction
Ad

Recently uploaded (20)

PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
master seminar digital applications in india
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
RMMM.pdf make it easy to upload and study
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Abdominal Access Techniques with Prof. Dr. R K Mishra
Anesthesia in Laparoscopic Surgery in India
Microbial disease of the cardiovascular and lymphatic systems
master seminar digital applications in india
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
O7-L3 Supply Chain Operations - ICLT Program
2.FourierTransform-ShortQuestionswithAnswers.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Chinmaya Tiranga quiz Grand Finale.pdf
Supply Chain Operations Speaking Notes -ICLT Program
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Complications of Minimal Access Surgery at WLH
RMMM.pdf make it easy to upload and study
STATICS OF THE RIGID BODIES Hibbelers.pdf
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
Ad

introduction to hypertext markup language.pptx

  • 1. HTML HYPER TEXT MARKUP LANGUAGE INTRODUCTION
  • 2. WHAT IS HTML? •HTML is the standard markup language for creating Web pages. •HTML describes the structure of a Web page •HTML consists of a series of elements telling the browser how to display the content
  • 4. A declaration that defines that this document is an HTML5 document <html> element is the root element of an HTML page <head> element contains meta information about the HTML page <body> element defines the document's body, and is a container for all the visible contents <Title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
  • 5. WHAT IS AN ELEMENT? •An HTML element is defined by a start tag, some content, and an end tag: <tagname> Content goes here... </tagname> (start) (end)