SlideShare ist ein Scribd-Unternehmen logo
1 von 18
COS 423 Theory of Algorithms • Kevin Wayne • Spring 2007
Web Programming
Internet and world wide web
• HTML
 Short for HyperText Markup Language, the authoring languageused
to create documents on the World Wide Web.
 First developed by Tim Berners-Lee in 1990, HTML is short
for HyperText Markup Language. HTML is used to create electronic
documents (called pages) that are displayed on the World Wide Web.
Each page contains a series of connections to other pages
called hyperlinks. Every web page you see on the Internet is written
using one version of HTML code or another.
2
Tag
 HTML commands are known as tag and surrounded by <and>. Html tags
are normally comes in pairs.
 <!DOCTYPE html>
 <html>
 <body>
 This is my first web page
 </body>
 </html>
3
Elements and Attributes
• Elements
• Elements are command that tell a browser to do something. Such as
<H1>.
• Attributes
• Tags can also have attributes, which are extra bits of information.
Attributes appear inside the opening tag and their values sit inside
quotation marks. They look something like
• <tag attribute="value">Margarine</tag>.
• We will come across tags with attributes later.
4
Benefits of HTML
• Simplicity
• Platform independent
• Easy navigation
• Easier to read and understand
5
Web page creation using HTML
• Text editor : use to write html command using any text editor such as
notepad or WordPad.
• Web browser: it is used to test the webpage.
6
Basic structure
• <HTML>
• <Head>
}head section use to identify the heading or title of document.. The title tag appear in
this section
• </head>
• <body>
} body section
• </body>
• </HTML>
7
A simple program
• <HTML>
• <Head> use to heading or title of program
• <Title> use to indicate title of a program
• my first program
• </Title>
• </head>
• <body> body of program
• Hello
• </body>
• </HTML>
Save program with name.html
8
Body tag attributes
• BGCOLOR specifies the background color of the web page. E.g. <body
BGCOLOR= “red“ TEXT =“yellow">
• BACKGROUND specifies the background picture of web page. E.g.
<body BACKGROUND= “MY.png“ TEXT =“yellow">
• TEXT specify text color.
9
HEADINGS
• Is a very important body tag and use to display headings.
• Align is used to specifies the alignment of heading. The possible values
are center, left and right.
• <H1 ALIGN= “center“ > first heading </H1>
Sample code
• <HTML>
• <body>
• <H1 ALIGN= “center“ > first heading </H1>
• <H2> first heading </H2>
• </body>
• </HTML>
10
Paragraph : a body tag
• <p ALIGN= “center“ > first paragraph </p>
• Sample code
11
Line break
• Use to decide where the txt will be break using <BR> tag. A <BR> tag
has no closing tag.
• sample code
• <HTML>
• <body>
• Use to decide where the txt will be break <BR> use to move control to
the next line <BR> it is used to end a line without inserting a paragraph
<BR> and it has no closing tag.
• </body>
• </HTML>
12
Horizontal line
• Use to separate different area of web page. It is used to display a
horizontal line in the page using <HR> tag and this tag has no closing
tag.
• ALIGN: is used to specify the alignment such as center, left, right. Line
appear in center by default.
• SIZE: specify the size of line.
• WIDTH: specify the width of line.
• NOSHADE: turn off shading of line.
• COLOR: specify the color of line
• E.g.
• <HR WIDTH=40 align=“center” size=4>
13
Text Formatting
• Bold : <B> bold </B>
• Italic : <I> ITALIC </I>
• Underline : <U> </U>
• Superscript: <SUP> </SUP>
• E.g. N <SUP> 2 </SUP>
• Subscript <SUB> </SUB>
• E.g. N<SUB>2</SUB>
14
FONT
• Is used to specify the characteristic of font such as typeface, size color etc.
the possible vales of face are “ARIAL”, “ARIAL BLACK”, “COURIER ”, and
“MS Sans Serif”.
• Big and Small tag
• Use to change the size of text.
• e,.g.
• <BIG>HELLO</BIG>
• <SMALL>HELLO</SMALL>
• DIV Tag
• Is used to define section in html document. It is used to group large section
of HTML elements together and format them with cascading style sheet.
• ALIGN :possible values are center, left, right. And default value is left.
• STYLE: used to include inline cascading style sheet.
• E.g. <DIV STYLE=“background-color:blue;text-align:right”>
• <p>helloworld</p>
• </DIV>
15
Marquee
• Is used to scroll text or image in different direction. The text placed
inside the marquee tag scrolls horizontally across the screen or the web
page.
• Attributes:
• behavior: indicate how the content will scroll. The possible values are
scroll, slide and alternate.
• BGCOLOR
• DIRECTION
16
Cont….
• Height: Indicate height of marquee.
• HSPACE: use to set the horizontal space to the left and right of the
marque and its value is given in pixels.
• Loop : use to specify the number of times the marquee will scroll and its
default value is INFINITE.
• SCROLLDELAY and SCROLLAMOUNt : it is used together with
SCROLLAMOUNT to set the speed of scrolling. Marquee display the
content and then delay for some period of time specified in
SCROLLDELAY. Its value is given in milliseconds and its default value
is 85.
• WIDTH
• VSPACE : use to set the vertical space at the top and bottom of the
marquee and it is given in pixels.
• <MARQUEE BEHAVIOR=SLIDE HEIGHT=25 WIDTH=300
BGCOLOR=RED HSPACE=15 VSPACE=25 DIRECTION=UP>
17
18

Weitere ähnliche Inhalte

Was ist angesagt?

CSS- Cascading Style Sheet
CSS- Cascading Style SheetCSS- Cascading Style Sheet
CSS- Cascading Style SheetCodewizacademy
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpageJames Erro
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLMeghan Frisco
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmleShikshak
 
HTML- Hyper Text Markup Language
HTML- Hyper Text Markup LanguageHTML- Hyper Text Markup Language
HTML- Hyper Text Markup LanguageCodewizacademy
 
Styling with CSS
Styling with CSSStyling with CSS
Styling with CSSMike Crabb
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niazikram niaz
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & LlinksNisa Soomro
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS FrameworksMike Crabb
 
HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web pageGrayzon Gonzales, LPT
 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentationumesh patil
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS Dave Kelly
 
Web development using html 5
Web development using html 5Web development using html 5
Web development using html 5Anjan Mahanta
 

Was ist angesagt? (20)

Basics of HTML
Basics of HTMLBasics of HTML
Basics of HTML
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
 
CSS- Cascading Style Sheet
CSS- Cascading Style SheetCSS- Cascading Style Sheet
CSS- Cascading Style Sheet
 
How to create basic webpage
How to create basic webpageHow to create basic webpage
How to create basic webpage
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
HTML- Hyper Text Markup Language
HTML- Hyper Text Markup LanguageHTML- Hyper Text Markup Language
HTML- Hyper Text Markup Language
 
Styling with CSS
Styling with CSSStyling with CSS
Styling with CSS
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
HTML By K.Sasidhar
HTML By K.SasidharHTML By K.Sasidhar
HTML By K.Sasidhar
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
 
HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web page
 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentation
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Web development using html 5
Web development using html 5Web development using html 5
Web development using html 5
 

Ähnlich wie Web fundamental concept and tags

WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tagsjananisairam
 
introduction to html.ppt
introduction to html.pptintroduction to html.ppt
introduction to html.pptShubhamIngale28
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptcharvivij
 
introdution-to-htmlppt.ppt
introdution-to-htmlppt.pptintrodution-to-htmlppt.ppt
introdution-to-htmlppt.pptnavyar41
 
Week-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxWeek-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxJuvyIlustrisimo
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .pptubaidullah75790
 
web development.pdf
web development.pdfweb development.pdf
web development.pdfBagHarki
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptxStefan Oprea
 
Lecture 2 introduction to html basics
Lecture 2 introduction to html basicsLecture 2 introduction to html basics
Lecture 2 introduction to html basicsAliMUSSA3
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2mmvidanes29
 

Ähnlich wie Web fundamental concept and tags (20)

Basics ogHtml
Basics ogHtml Basics ogHtml
Basics ogHtml
 
WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tags
 
HTML-INTRO.pptx
HTML-INTRO.pptxHTML-INTRO.pptx
HTML-INTRO.pptx
 
introduction to html.ppt
introduction to html.pptintroduction to html.ppt
introduction to html.ppt
 
Html
HtmlHtml
Html
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
html
htmlhtml
html
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
Html cia
Html ciaHtml cia
Html cia
 
introdution-to-htmlppt.ppt
introdution-to-htmlppt.pptintrodution-to-htmlppt.ppt
introdution-to-htmlppt.ppt
 
Week-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptxWeek-1_PPT_WEBAPPS-done.pptx
Week-1_PPT_WEBAPPS-done.pptx
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
Html and css
Html and cssHtml and css
Html and css
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Html
HtmlHtml
Html
 
Lab1_HTML.pptx
Lab1_HTML.pptxLab1_HTML.pptx
Lab1_HTML.pptx
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Html and html5 cheat sheets
Html and html5 cheat sheetsHtml and html5 cheat sheets
Html and html5 cheat sheets
 
Lecture 2 introduction to html basics
Lecture 2 introduction to html basicsLecture 2 introduction to html basics
Lecture 2 introduction to html basics
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 

Kürzlich hochgeladen

Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...
Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...
Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...Pooja Nehwal
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar TrainingKylaCullinane
 
Causes of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCauses of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCamilleBoulbin1
 
If this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaIf this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaKayode Fayemi
 
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedSector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedDelhi Call girls
 
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...amilabibi1
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoKayode Fayemi
 
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Delhi Call girls
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Vipesco
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lodhisaajjda
 
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxChiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxraffaeleoman
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatmentnswingard
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIINhPhngng3
 
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdf
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdfThe workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdf
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdfSenaatti-kiinteistöt
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfSkillCertProExams
 
My Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle BaileyMy Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle Baileyhlharris
 
Digital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalDigital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalFabian de Rijk
 

Kürzlich hochgeladen (18)

Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...
Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...
Aesthetic Colaba Mumbai Cst Call girls 📞 7738631006 Grant road Call Girls ❤️-...
 
Report Writing Webinar Training
Report Writing Webinar TrainingReport Writing Webinar Training
Report Writing Webinar Training
 
Causes of poverty in France presentation.pptx
Causes of poverty in France presentation.pptxCauses of poverty in France presentation.pptx
Causes of poverty in France presentation.pptx
 
If this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New NigeriaIf this Giant Must Walk: A Manifesto for a New Nigeria
If this Giant Must Walk: A Manifesto for a New Nigeria
 
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verifiedSector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
Sector 62, Noida Call girls :8448380779 Noida Escorts | 100% verified
 
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
Bring back lost lover in USA, Canada ,Uk ,Australia ,London Lost Love Spell C...
 
Uncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac FolorunsoUncommon Grace The Autobiography of Isaac Folorunso
Uncommon Grace The Autobiography of Isaac Folorunso
 
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
Busty Desi⚡Call Girls in Sector 51 Noida Escorts >༒8448380779 Escort Service-...
 
Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510Thirunelveli call girls Tamil escorts 7877702510
Thirunelveli call girls Tamil escorts 7877702510
 
lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.lONG QUESTION ANSWER PAKISTAN STUDIES10.
lONG QUESTION ANSWER PAKISTAN STUDIES10.
 
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptxChiulli_Aurora_Oman_Raffaele_Beowulf.pptx
Chiulli_Aurora_Oman_Raffaele_Beowulf.pptx
 
ICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdfICT role in 21st century education and it's challenges.pdf
ICT role in 21st century education and it's challenges.pdf
 
Dreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video TreatmentDreaming Marissa Sánchez Music Video Treatment
Dreaming Marissa Sánchez Music Video Treatment
 
Dreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio IIIDreaming Music Video Treatment _ Project & Portfolio III
Dreaming Music Video Treatment _ Project & Portfolio III
 
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdf
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdfThe workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdf
The workplace ecosystem of the future 24.4.2024 Fabritius_share ii.pdf
 
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdfAWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
AWS Data Engineer Associate (DEA-C01) Exam Dumps 2024.pdf
 
My Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle BaileyMy Presentation "In Your Hands" by Halle Bailey
My Presentation "In Your Hands" by Halle Bailey
 
Digital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of DrupalDigital collaboration with Microsoft 365 as extension of Drupal
Digital collaboration with Microsoft 365 as extension of Drupal
 

Web fundamental concept and tags

  • 1. COS 423 Theory of Algorithms • Kevin Wayne • Spring 2007 Web Programming
  • 2. Internet and world wide web • HTML  Short for HyperText Markup Language, the authoring languageused to create documents on the World Wide Web.  First developed by Tim Berners-Lee in 1990, HTML is short for HyperText Markup Language. HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web. Each page contains a series of connections to other pages called hyperlinks. Every web page you see on the Internet is written using one version of HTML code or another. 2
  • 3. Tag  HTML commands are known as tag and surrounded by <and>. Html tags are normally comes in pairs.  <!DOCTYPE html>  <html>  <body>  This is my first web page  </body>  </html> 3
  • 4. Elements and Attributes • Elements • Elements are command that tell a browser to do something. Such as <H1>. • Attributes • Tags can also have attributes, which are extra bits of information. Attributes appear inside the opening tag and their values sit inside quotation marks. They look something like • <tag attribute="value">Margarine</tag>. • We will come across tags with attributes later. 4
  • 5. Benefits of HTML • Simplicity • Platform independent • Easy navigation • Easier to read and understand 5
  • 6. Web page creation using HTML • Text editor : use to write html command using any text editor such as notepad or WordPad. • Web browser: it is used to test the webpage. 6
  • 7. Basic structure • <HTML> • <Head> }head section use to identify the heading or title of document.. The title tag appear in this section • </head> • <body> } body section • </body> • </HTML> 7
  • 8. A simple program • <HTML> • <Head> use to heading or title of program • <Title> use to indicate title of a program • my first program • </Title> • </head> • <body> body of program • Hello • </body> • </HTML> Save program with name.html 8
  • 9. Body tag attributes • BGCOLOR specifies the background color of the web page. E.g. <body BGCOLOR= “red“ TEXT =“yellow"> • BACKGROUND specifies the background picture of web page. E.g. <body BACKGROUND= “MY.png“ TEXT =“yellow"> • TEXT specify text color. 9
  • 10. HEADINGS • Is a very important body tag and use to display headings. • Align is used to specifies the alignment of heading. The possible values are center, left and right. • <H1 ALIGN= “center“ > first heading </H1> Sample code • <HTML> • <body> • <H1 ALIGN= “center“ > first heading </H1> • <H2> first heading </H2> • </body> • </HTML> 10
  • 11. Paragraph : a body tag • <p ALIGN= “center“ > first paragraph </p> • Sample code 11
  • 12. Line break • Use to decide where the txt will be break using <BR> tag. A <BR> tag has no closing tag. • sample code • <HTML> • <body> • Use to decide where the txt will be break <BR> use to move control to the next line <BR> it is used to end a line without inserting a paragraph <BR> and it has no closing tag. • </body> • </HTML> 12
  • 13. Horizontal line • Use to separate different area of web page. It is used to display a horizontal line in the page using <HR> tag and this tag has no closing tag. • ALIGN: is used to specify the alignment such as center, left, right. Line appear in center by default. • SIZE: specify the size of line. • WIDTH: specify the width of line. • NOSHADE: turn off shading of line. • COLOR: specify the color of line • E.g. • <HR WIDTH=40 align=“center” size=4> 13
  • 14. Text Formatting • Bold : <B> bold </B> • Italic : <I> ITALIC </I> • Underline : <U> </U> • Superscript: <SUP> </SUP> • E.g. N <SUP> 2 </SUP> • Subscript <SUB> </SUB> • E.g. N<SUB>2</SUB> 14
  • 15. FONT • Is used to specify the characteristic of font such as typeface, size color etc. the possible vales of face are “ARIAL”, “ARIAL BLACK”, “COURIER ”, and “MS Sans Serif”. • Big and Small tag • Use to change the size of text. • e,.g. • <BIG>HELLO</BIG> • <SMALL>HELLO</SMALL> • DIV Tag • Is used to define section in html document. It is used to group large section of HTML elements together and format them with cascading style sheet. • ALIGN :possible values are center, left, right. And default value is left. • STYLE: used to include inline cascading style sheet. • E.g. <DIV STYLE=“background-color:blue;text-align:right”> • <p>helloworld</p> • </DIV> 15
  • 16. Marquee • Is used to scroll text or image in different direction. The text placed inside the marquee tag scrolls horizontally across the screen or the web page. • Attributes: • behavior: indicate how the content will scroll. The possible values are scroll, slide and alternate. • BGCOLOR • DIRECTION 16
  • 17. Cont…. • Height: Indicate height of marquee. • HSPACE: use to set the horizontal space to the left and right of the marque and its value is given in pixels. • Loop : use to specify the number of times the marquee will scroll and its default value is INFINITE. • SCROLLDELAY and SCROLLAMOUNt : it is used together with SCROLLAMOUNT to set the speed of scrolling. Marquee display the content and then delay for some period of time specified in SCROLLDELAY. Its value is given in milliseconds and its default value is 85. • WIDTH • VSPACE : use to set the vertical space at the top and bottom of the marquee and it is given in pixels. • <MARQUEE BEHAVIOR=SLIDE HEIGHT=25 WIDTH=300 BGCOLOR=RED HSPACE=15 VSPACE=25 DIRECTION=UP> 17
  • 18. 18