SlideShare a Scribd company logo
ARYAN KUMAR
ADM-2789 CLASS-VIII B
ROLL-15
AN INTRODUCTION
TO WEB PAGE
PROGRAMMING
• With HTML you can create your own Web site.
• HTML stands for Hyper Text Markup Language.
• HTML is derived from a language SGML (Standard
Graphics Markup Language).
• The future of HTML is XML (eXtended Markup
Language).
• HTML is not a programming language, it is a Markup
Language.
• A markup language is a set of markup tags.
• HTML uses markup tags to describe web pages.
• HTML is not case sensitive language.
• HTML documents contain HTML tags and plain text.
• A tag is always enclosed in angle bracket
<>like <HTML>
• HTML tags normally come in pairs like
<HTML> and </HTML> i.e.
Start tag = <HTML>
End tag =</HTML>
• Start and end tags are also called opening
tags and closing tags
<HTML>
<HEAD>
<TITLE>
MY FIRST PAGE
</TITLE>
</HEAD>
<BODY>
GLOBAL INFORMATION CHANNEL
</BODY>
</HTML>
• <HTML> - Describe HTML web page that is
to be viewed by a web browser.
• <HEAD> - This defines the header section
of the page.
• <TITLE> - This shows a caption in the title
bar of the page.
• <BODY> - This tag show contents of the
web page will be displayed.
There are two different types of tags:->
Container Element:->
Container Tags contains start tag & end tag i.e.
<HTML>… </HTML>
Empty Element:->
Empty Tags contains start tag i.e.
<BR>
Heading Element:->
• There are six heading elements
(<H1>,<H2>,<H3>,<H4>, <H5>,<H6>).
• All the six heading elements are container
tag and requires a closing tag.
• <h1> will print the largest heading
• <h6> will print the smallest heading
<html>
<head><title>heading</title></head>
<body>
<h1> GLOBAL INFO CHANNEL</h1>
<h2> GLOBAL INFO CHANNEL</h2>
<h3> GLOBAL INFO CHANNEL</h3>
<h4> GLOBAL INFO CHANNEL</h4>
<h5> GLOBAL INFO CHANNEL</h5>
<h6> GLOBAL INFO CHANNEL</h6>
</body>
</html>
<html>
<head></head>
<body>
<b>This text is Bold</b>
<br><em>This text is Emphasized</em>
<br><i>This text is Italic</i>
<br><small>This text is Small</small>
<br>This is<sub> Subscript</sub> and
<sup>Superscript</sup>
<br><strong>This text is Strong</strong>
<br><big>This text is Big</big>
<br><u>This text is Underline</u>
<br><strike>This text is Strike</strike>
<br><tt>This text is Teletype</tt>
</body>
</html>
• The attribute bgcolor is used for changing the back ground
color of the page.
<body bgcolor=“Green” >
• Text is use to change the color of the enclosed text.
<body text=“White”>
• It is use to alignment of the text.
1. Left alignment <align=“left”>
2. Right alignment <align=“right”>
3. Center alignment <align=“center”>
• To display an image on a page, you need to
use the src attribute.
• src stands for "source". The value of the src
attribute is the URL of the image you want to
display on your page.
• It is a empty tag.
<IMG SRC ="url">
<IMG SRC="picture.gif“>
<IMG SRC="picture.gif“ HEIGHT="30"
WIDTH="50">
<img>
<Src>
<Alt>
<Width>
<Height>
<Border>
<Hspace>
<Vspace>
<Align>
<background>
Defines an image
display an image on a page,Src stands
for "source".
Define "alternate text" for an image
Defines the width of the image
Defines the height of the image
Defines border of the image
Horizontal space of the image
Vertical space of the image
Align an image within the text
Add a background image to an HTML
page
• Lists provide methods to show item or element
sequences in document content. There are
three main types of lists:->
1. Unordered lists:-unordered lists are bulleted.
2. Ordered lists:- Ordered lists are numbered.
3. Definition lists:- Used to create a definition list
.
<LI>
<OL>
<UL>
<DL>
<DT>
<DD>
<LI> is an empty tag,it is used for
representing the list items
Ordered list
Unordered list
Defines a definition list
Defines a term (an item) in a definition
list
Defines a description of a term in a
definition list
• TYPE attribute to the <UL> tag to show
different bullets like:-
1. Disc
2. Circle
3. Square
<ul Type =“disc”>…..</ul>
• The attribute TYPE can also be used with
<LI> element.
<html><body>
<h4>Disc bullets list:</h4>
<ul type="disc"> <li>Jones</li>
<li>Smith</li>
<li>Hayes</li>
<li>Jackson</li></ul>
<h4>Circle bullets list:</h4>
<ul type="circle"> <li>Jones</li>
<li>Simth</li>
<li>Hayes</li>
<li>Jackson</li></ul>
<h4>Square bullets list:</h4>
<ul type="square"> <li>Jones</li>
<li>Smith</li>
<li>Hayes</li>
<li>Jackson</li></ul>
</body></html>
THANK YOU

More Related Content

PPTX
Html formatting
PPTX
Html images syntax
PPTX
Html tables
PPTX
uptu web technology unit 2 html
PPTX
Css Text Formatting
PPTX
uptu web technology unit 2 html
PPTX
Elements of html powerpoint
PPTX
uptu web technology unit 2 Css
Html formatting
Html images syntax
Html tables
uptu web technology unit 2 html
Css Text Formatting
uptu web technology unit 2 html
Elements of html powerpoint
uptu web technology unit 2 Css

What's hot (20)

PPTX
uptu web technology unit 2 html
PPTX
Css fonts
PPTX
Html basics
PPTX
PPT
Introduction to Html
PPTX
Web topic 5 text formatting
PPSX
Html level ii
PPTX
Web Designing
PPTX
Chapter 6 html
PPTX
HTML Lesson 1
PDF
2images
PPTX
Basic HTML
PPTX
Html basics-auro skills
PDF
PPTX
Html Basic Tags
PPTX
PPTX
Web designing (1) - Html Basic Codding
PPTX
Html - By Auroskkil
PPTX
Css inclusion
uptu web technology unit 2 html
Css fonts
Html basics
Introduction to Html
Web topic 5 text formatting
Html level ii
Web Designing
Chapter 6 html
HTML Lesson 1
2images
Basic HTML
Html basics-auro skills
Html Basic Tags
Web designing (1) - Html Basic Codding
Html - By Auroskkil
Css inclusion
Ad

Similar to Aryan kumar (20)

PPT
Basics ogHtml
PPT
Unit 2 (html)
PPT
Web Design-III IT.ppt
PPT
Web Design.ppt
PPT
Introduction to HTML
PDF
2a web technology html basics 1
PPT
introduction to html.ppt
PPT
HTML basics of HTML for students of eng1.ppt
PPTX
HTML and DHTML
PPTX
Part 1 -HTML- Basic_Spring 2023.pptx
PPTX
PPTX
PPTX
BVK_PTT_HTML-Unit - III (1).pptx
PDF
Intro to html revised2
PDF
HTML PPT.pdf
PPT
Unit 1-HTML Final.ppt
PDF
HTML.pdf
PPTX
HTML-INTRO.pptx
Basics ogHtml
Unit 2 (html)
Web Design-III IT.ppt
Web Design.ppt
Introduction to HTML
2a web technology html basics 1
introduction to html.ppt
HTML basics of HTML for students of eng1.ppt
HTML and DHTML
Part 1 -HTML- Basic_Spring 2023.pptx
BVK_PTT_HTML-Unit - III (1).pptx
Intro to html revised2
HTML PPT.pdf
Unit 1-HTML Final.ppt
HTML.pdf
HTML-INTRO.pptx
Ad

Recently uploaded (20)

PPTX
Database Information System - Management Information System
PDF
si manuel quezon at mga nagawa sa bansang pilipinas
PPT
Ethics in Information System - Management Information System
PDF
Introduction to the IoT system, how the IoT system works
PPTX
artificial intelligence overview of it and more
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PDF
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
PPTX
SAP Ariba Sourcing PPT for learning material
PDF
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
PDF
SASE Traffic Flow - ZTNA Connector-1.pdf
PDF
SlidesGDGoCxRAIS about Google Dialogflow and NotebookLM.pdf
PPTX
1402_iCSC_-_RESTful_Web_APIs_--_Josef_Hammer.pptx
PDF
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
PPTX
Internet Safety for Seniors presentation
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PPTX
IPCNA VIRTUAL CLASSES INTERMEDIATE 6 PROJECT.pptx
PDF
simpleintnettestmetiaerl for the simple testint
PDF
Session 1 (Week 1)fghjmgfdsfgthyjkhfdsadfghjkhgfdsa
PDF
Exploring VPS Hosting Trends for SMBs in 2025
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
Database Information System - Management Information System
si manuel quezon at mga nagawa sa bansang pilipinas
Ethics in Information System - Management Information System
Introduction to the IoT system, how the IoT system works
artificial intelligence overview of it and more
Power Point - Lesson 3_2.pptx grad school presentation
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
SAP Ariba Sourcing PPT for learning material
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
SASE Traffic Flow - ZTNA Connector-1.pdf
SlidesGDGoCxRAIS about Google Dialogflow and NotebookLM.pdf
1402_iCSC_-_RESTful_Web_APIs_--_Josef_Hammer.pptx
📍 LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1 TERPOPULER DI INDONESIA ! 🌟
Internet Safety for Seniors presentation
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
IPCNA VIRTUAL CLASSES INTERMEDIATE 6 PROJECT.pptx
simpleintnettestmetiaerl for the simple testint
Session 1 (Week 1)fghjmgfdsfgthyjkhfdsadfghjkhgfdsa
Exploring VPS Hosting Trends for SMBs in 2025
The New Creative Director: How AI Tools for Social Media Content Creation Are...

Aryan kumar

  • 2. AN INTRODUCTION TO WEB PAGE PROGRAMMING
  • 3. • With HTML you can create your own Web site. • HTML stands for Hyper Text Markup Language. • HTML is derived from a language SGML (Standard Graphics Markup Language). • The future of HTML is XML (eXtended Markup Language). • HTML is not a programming language, it is a Markup Language. • A markup language is a set of markup tags. • HTML uses markup tags to describe web pages. • HTML is not case sensitive language. • HTML documents contain HTML tags and plain text.
  • 4. • A tag is always enclosed in angle bracket <>like <HTML> • HTML tags normally come in pairs like <HTML> and </HTML> i.e. Start tag = <HTML> End tag =</HTML> • Start and end tags are also called opening tags and closing tags
  • 6. • <HTML> - Describe HTML web page that is to be viewed by a web browser. • <HEAD> - This defines the header section of the page. • <TITLE> - This shows a caption in the title bar of the page. • <BODY> - This tag show contents of the web page will be displayed.
  • 7. There are two different types of tags:-> Container Element:-> Container Tags contains start tag & end tag i.e. <HTML>… </HTML> Empty Element:-> Empty Tags contains start tag i.e. <BR>
  • 8. Heading Element:-> • There are six heading elements (<H1>,<H2>,<H3>,<H4>, <H5>,<H6>). • All the six heading elements are container tag and requires a closing tag. • <h1> will print the largest heading • <h6> will print the smallest heading
  • 9. <html> <head><title>heading</title></head> <body> <h1> GLOBAL INFO CHANNEL</h1> <h2> GLOBAL INFO CHANNEL</h2> <h3> GLOBAL INFO CHANNEL</h3> <h4> GLOBAL INFO CHANNEL</h4> <h5> GLOBAL INFO CHANNEL</h5> <h6> GLOBAL INFO CHANNEL</h6> </body> </html>
  • 10. <html> <head></head> <body> <b>This text is Bold</b> <br><em>This text is Emphasized</em> <br><i>This text is Italic</i> <br><small>This text is Small</small> <br>This is<sub> Subscript</sub> and <sup>Superscript</sup> <br><strong>This text is Strong</strong> <br><big>This text is Big</big> <br><u>This text is Underline</u> <br><strike>This text is Strike</strike> <br><tt>This text is Teletype</tt> </body> </html>
  • 11. • The attribute bgcolor is used for changing the back ground color of the page. <body bgcolor=“Green” > • Text is use to change the color of the enclosed text. <body text=“White”>
  • 12. • It is use to alignment of the text. 1. Left alignment <align=“left”> 2. Right alignment <align=“right”> 3. Center alignment <align=“center”>
  • 13. • To display an image on a page, you need to use the src attribute. • src stands for "source". The value of the src attribute is the URL of the image you want to display on your page. • It is a empty tag. <IMG SRC ="url"> <IMG SRC="picture.gif“> <IMG SRC="picture.gif“ HEIGHT="30" WIDTH="50">
  • 14. <img> <Src> <Alt> <Width> <Height> <Border> <Hspace> <Vspace> <Align> <background> Defines an image display an image on a page,Src stands for "source". Define "alternate text" for an image Defines the width of the image Defines the height of the image Defines border of the image Horizontal space of the image Vertical space of the image Align an image within the text Add a background image to an HTML page
  • 15. • Lists provide methods to show item or element sequences in document content. There are three main types of lists:-> 1. Unordered lists:-unordered lists are bulleted. 2. Ordered lists:- Ordered lists are numbered. 3. Definition lists:- Used to create a definition list .
  • 16. <LI> <OL> <UL> <DL> <DT> <DD> <LI> is an empty tag,it is used for representing the list items Ordered list Unordered list Defines a definition list Defines a term (an item) in a definition list Defines a description of a term in a definition list
  • 17. • TYPE attribute to the <UL> tag to show different bullets like:- 1. Disc 2. Circle 3. Square <ul Type =“disc”>…..</ul> • The attribute TYPE can also be used with <LI> element.
  • 18. <html><body> <h4>Disc bullets list:</h4> <ul type="disc"> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul> <h4>Circle bullets list:</h4> <ul type="circle"> <li>Jones</li> <li>Simth</li> <li>Hayes</li> <li>Jackson</li></ul> <h4>Square bullets list:</h4> <ul type="square"> <li>Jones</li> <li>Smith</li> <li>Hayes</li> <li>Jackson</li></ul> </body></html>