SlideShare a Scribd company logo
HTML (Hyper Text Markup language)
• HTML is used for defining layout of a page.
• We use HTML tags to define looks and feel of
a website.
• HTML tag is parent of head and body.
•Most of HTML elements have opening and
closing tags with content in between.
•Some tags have no content in between like <br>
BASIC HTML PAGE
BASIC HTML TAGS
Heading Tags
Paragraph Tags
Anchor Tags Image Tags
Bold, italic and
underline Tags
BIG and
SMALL Tags
CSS(Cascading Style Sheet)
• It is language that is used to describe the style
of a documents.
• CSS is one of the main three components of a
webpage along with HTML and JavaScript.
How to Add CSS to HTML?
1. Inline CSS
• Use the
style attribute on
the
HTML element
to add styles to
the web page.
• It is used for
small projects.
2. Internal CSS
• Place the
CSS styles within
a <style> tag
inside the
HTML file, usually
inside the
<head> section.
3. External CSS
• Create a
separate CSS file
with a .css
extension and
link this file to
your HTML file
using the
<link> tag.
SOME CSS PROPERTY
COLOR
properties
BACK_GROU
NDproperties
TEXT Properties SELECTOR
properties
Color : red; Background-
color : red;
TEXT-ALIGN :
LEFT/ RIGHT
UNIVERSAL
Selector *{}
Color: green; Background-
color : pink;
Text-Decoration :
underline/
overline
Element
Selector
h1{}
Color : blue; Background-
color : red;
ID Selector
#myID{}
Color: pink; Background –
color : blue;
Class
Selector .my
class{}
Thank you

More Related Content

PPT
HTML & CSS.ppt
PDF
Basic Details of HTML and CSS.pdf
PPTX
Workshop 2 Slides.pptx
PPTX
HTML and CSS
PPT
6_CasCadingStylesSheetsCSS.ppt
PPTX
Intro to Html, CSS a beginner friendly guide.pptx
PPTX
Introduction to Cascading Style Sheets .
PPTX
gdg Introduction to HTML-CSS-Javascript.pptx
HTML & CSS.ppt
Basic Details of HTML and CSS.pdf
Workshop 2 Slides.pptx
HTML and CSS
6_CasCadingStylesSheetsCSS.ppt
Intro to Html, CSS a beginner friendly guide.pptx
Introduction to Cascading Style Sheets .
gdg Introduction to HTML-CSS-Javascript.pptx

Similar to HTML (Hyper Text Markup language ).pptx (20)

PPTX
Introduction to HTML-CSS-Javascript.pptx
PPT
Presentation on html, css
PPTX
Web development using HTML and CSS
PPT
html and css- 23091 3154 458-5d4341a0.ppt
PPTX
Java script and html
PPTX
Java script and html new
PPTX
HTML_111.pptx all about introduction etc
PPTX
HTML, CSS BASICS OF HTML AND CSS USED IN WEBSITE.pptx
DOCX
PHP HTML CSS Notes
PPTX
PPTX
An Overview of HTML, CSS & Java Script
PPTX
Responsive Design
PPTX
Tech Winter Break : Basics of Web Development
PPTX
Tech Winter Break- GDG on Campus Bajaj Institute of Technology, Wardha
PPTX
Html Styles-CSS
PPT
PPTX
wd project.pptx
PPTX
Hushang Gaikwad
PPT
CSS Training in Bangalore
Introduction to HTML-CSS-Javascript.pptx
Presentation on html, css
Web development using HTML and CSS
html and css- 23091 3154 458-5d4341a0.ppt
Java script and html
Java script and html new
HTML_111.pptx all about introduction etc
HTML, CSS BASICS OF HTML AND CSS USED IN WEBSITE.pptx
PHP HTML CSS Notes
An Overview of HTML, CSS & Java Script
Responsive Design
Tech Winter Break : Basics of Web Development
Tech Winter Break- GDG on Campus Bajaj Institute of Technology, Wardha
Html Styles-CSS
wd project.pptx
Hushang Gaikwad
CSS Training in Bangalore
Ad

Recently uploaded (20)

PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
History, Philosophy and sociology of education (1).pptx
PPTX
master seminar digital applications in india
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Trump Administration's workforce development strategy
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Computing-Curriculum for Schools in Ghana
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Classroom Observation Tools for Teachers
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
History, Philosophy and sociology of education (1).pptx
master seminar digital applications in india
A systematic review of self-coping strategies used by university students to ...
Chinmaya Tiranga quiz Grand Finale.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
LDMMIA Reiki Yoga Finals Review Spring Summer
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Orientation - ARALprogram of Deped to the Parents.pptx
Weekly quiz Compilation Jan -July 25.pdf
Trump Administration's workforce development strategy
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Anesthesia in Laparoscopic Surgery in India
Computing-Curriculum for Schools in Ghana
Supply Chain Operations Speaking Notes -ICLT Program
Practical Manual AGRO-233 Principles and Practices of Natural Farming
Microbial disease of the cardiovascular and lymphatic systems
Classroom Observation Tools for Teachers
Ad

HTML (Hyper Text Markup language ).pptx

  • 1. HTML (Hyper Text Markup language) • HTML is used for defining layout of a page. • We use HTML tags to define looks and feel of a website. • HTML tag is parent of head and body. •Most of HTML elements have opening and closing tags with content in between. •Some tags have no content in between like <br>
  • 3. BASIC HTML TAGS Heading Tags Paragraph Tags Anchor Tags Image Tags Bold, italic and underline Tags BIG and SMALL Tags
  • 4. CSS(Cascading Style Sheet) • It is language that is used to describe the style of a documents. • CSS is one of the main three components of a webpage along with HTML and JavaScript.
  • 5. How to Add CSS to HTML? 1. Inline CSS • Use the style attribute on the HTML element to add styles to the web page. • It is used for small projects. 2. Internal CSS • Place the CSS styles within a <style> tag inside the HTML file, usually inside the <head> section. 3. External CSS • Create a separate CSS file with a .css extension and link this file to your HTML file using the <link> tag.
  • 6. SOME CSS PROPERTY COLOR properties BACK_GROU NDproperties TEXT Properties SELECTOR properties Color : red; Background- color : red; TEXT-ALIGN : LEFT/ RIGHT UNIVERSAL Selector *{} Color: green; Background- color : pink; Text-Decoration : underline/ overline Element Selector h1{} Color : blue; Background- color : red; ID Selector #myID{} Color: pink; Background – color : blue; Class Selector .my class{}