SlideShare a Scribd company logo
1 of 21
Mr. P. B. Jadhav
WEB
TECHNOLOGY
Mr. P. B. Jadhav
A website is a collection of web pages.
A web page may contain texts, graphics,
sounds, animations, and movies.
Web pages are developed with the help of
a language called Hyper Text Markup
Language(HTML). It is also a language of
Internet.
Mr. P. B. Jadhav
Why Internet? Use of internet
• Email
• Social Networking, Chat
• Information sharing
• Getting updates – News around the world
• Entertainment – Games, Videos and Music
• Virtual classrooms
• Remote Access
• Online Jobs
Mr. P. B. Jadhav
Technologies Overview
List of Technologies
Client Side Technologies
• HTML, CSS, JavaScript, VBScript
• XHTML, DHTML, WML, AJAX
• FLASH
Server Side Technologies
• ASP, PHP, Perl, JSP
• ASP.NET, Java
• MySQL, SQL Server, Access
Mr. P. B. Jadhav
Technologies Overview
List of Technologies
Some More Advanced Technologies
• XML, XSLT, RSS, Atom
• X-Path, XQuery, WSDL
• XML-DOM, RDF
• Ruby on Rails, GRAIL Framework
• REST, SOAP
Mr. P. B. Jadhav
How to choose a
Technology?
Depends on:
• What is the type of content?
• Who is your audience?
• Who will modify your content?
• What are your Future Plans?
• Availability of technology?
• Your previous experience?
• Portability and Data sharing
Mr. P. B. Jadhav
HTML
Hyper Text Markup Language
• Documents
– Document = page = HTM file = topic
– Content (text, images)
– Tags (display commands)
• Other terms
– Window: browser display window
– URL: Uniform Resource Locator
– Hyperlink: hypertext jump to a resource
– Resource: URL, image, mailto, external file
Mr. P. B. Jadhav
HTML
HTML pages are tag-based documents
• Really plain ASCII text files
• Don't look like documents they represent
• Tags indicate how processing program should display
text and graphics
• Processed by browsers “on the fly”
• Tags usually appear in pairs
• Most can be modified by attributes/values
Mr. P. B. Jadhav
That’s how this…
<html>
<head><title>Welcome onboard</title></head>
<body bgcolor=“#f4f4f4">
<h1>Welcome</h1>
<img src=“dcetech.gif" width=“222" height=“80"
alt=“DCETECH" BORDER="0“ />
<h2>A Message from the Speaker </h2>
<p><font color=red>Good evening! Thank you for coming here!
</font></p>
<p>Hello and welcome to Web technologies workshop! I'm
<b>Ankit Jain,</b>, 4th year Computer Engg <a
href=“http://dcetech.com"> Head DCETECH.COM </a>. Dcetech is
a student portal and only one of its kind in India.It is not
only a technical oriented site which caters only for
engineers but its for students from any background! Also
students from any educational institution can register and
join Dcetech.
</p>
. . .
</body>
</html>
Mr. P. B. Jadhav
Turns into this…
Mr. P. B. Jadhav
Some HTML Tags example
• START TAG
• <HTML>
• <HEAD>
• <TITLE>
• <BODY>
• <H1>, <H2>, ...
• <IMG ...>
• <A ...>
• <P>
• <BR/>
• <OL>
• <UL>
• <LI>
END TAG
</HTML>
</HEAD>
</TITLE>
</BODY>
</H1>, </H2>, ...
</IMG> (optional)
</A>
</P>
(none; "empty" tag)
</OL>
</UL>
</LI>
Mr. P. B. Jadhav
Basic Structure of HTML document Example of
basic tag positioning
<html>
<head>
<title>CAP</title>
</head>
<body>
<p>Look, I'm a paragraph!
</p>
</body>
</html>
Mr. P. B. Jadhav
Attributes and Values
• Properties, traits, or characteristics that modify the way a tag
looks or acts
– Usually in pairs: <body bgcolor="teal">
– Sometimes not: <option selected>
• Most HTML tags can take attributes
– Format of value depends on attribute
• – width="150"
• width="page3.htm"
Mr. P. B. Jadhav
Tables
<table border="1">
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
</tr>
</table>
Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2
Mr. P. B. Jadhav
Some Common Text Tags
• Heading levels
– h1 – h6, numbers inverse to text size
<h1>Heading One</h1>
<h2>Heading One</h2>
• Paragraph
– Probably the most common tag
<p>Yada yada yada...</p>
• Line break (an empty tag)
– Used when <p>'s white space not wanted
This line will break<br>right there
Mr. P. B. Jadhav
Ordered & Unordered Lists
• Ordered (numbered)
– Use <ol>...</ol> tags
• Unordered (bulleted)
– Use <ul>...</ul> tags
• List Items make up both lists
– Use same <li>...</li> tags
• Lists can contain almost anything
– Text, images, paragraphs, links
– Even other (nested) lists, same type or not
Mr. P. B. Jadhav
CSS Concepts
• Styles are named sets of formatting commands
– [18pt, Arial, left aligned] "Section head"
– [Bold, italic, blue] "Glossary term"
– [Normal, 10pt, Verdana] "Body text"
– [Italic, orange, small caps] "Bob"
• Style sheets are control documents that are
referenced by content documents
– MS Word, other editors & desktop publishing programs
have done it for years
– DOT : DOC :: CSS : HTM
Mr. P. B. Jadhav
Why Use CSS?
• HTML formatting is awkward and
imprecise
– Originally intended to deliver well organized text
(aimed at structure, not formatting)
– Over time, formatting elements were added that
solved some problems, but created many more
• W3C proposed Cascading Style Sheets
– Separate format from content
– Enforce consistency
– Greatly simplify control & maintenance
Mr. P. B. Jadhav
What Can CSS Control?
• Almost everything
– Page background, colors, images, fonts and text,
margins and spacing, headings, positioning, links,
lists, tables, cursors, etc.
• Idea is to put all formatting in CSS
– To that end, many tags are "deprecated" by CSS:
<font>, <basefont>, <center>……
Mr. P. B. Jadhav
Mr. P. B. Jadhav
THANK YOU
Mr. P. B. Jadhav

More Related Content

What's hot

Introduction_Web_Technologies
Introduction_Web_TechnologiesIntroduction_Web_Technologies
Introduction_Web_Technologies
Deepak Raj
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basics
messinam
 
Lecture1: HTML and JavaScript
Lecture1: HTML and JavaScriptLecture1: HTML and JavaScript
Lecture1: HTML and JavaScript
omarshehab
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
Jussi Pohjolainen
 
Introduction to Web Standards
Introduction to Web StandardsIntroduction to Web Standards
Introduction to Web Standards
Jussi Pohjolainen
 
HTML CSS Best Practices
HTML CSS Best PracticesHTML CSS Best Practices
HTML CSS Best Practices
hoctudau
 

What's hot (20)

Introduction_Web_Technologies
Introduction_Web_TechnologiesIntroduction_Web_Technologies
Introduction_Web_Technologies
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basics
 
Lecture1: HTML and JavaScript
Lecture1: HTML and JavaScriptLecture1: HTML and JavaScript
Lecture1: HTML and JavaScript
 
Unit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - ITUnit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - IT
 
Dhtml
DhtmlDhtml
Dhtml
 
Html css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers workHtml css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers work
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
E-publishing
E-publishingE-publishing
E-publishing
 
Html5
Html5Html5
Html5
 
CMWP, the technical lecture
CMWP, the technical lectureCMWP, the technical lecture
CMWP, the technical lecture
 
Dhtml chapter2
Dhtml chapter2Dhtml chapter2
Dhtml chapter2
 
Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Steph's Html5 and css presentation
Steph's Html5 and css presentationSteph's Html5 and css presentation
Steph's Html5 and css presentation
 
Introduction to Web Standards
Introduction to Web StandardsIntroduction to Web Standards
Introduction to Web Standards
 
HTML CSS Best Practices
HTML CSS Best PracticesHTML CSS Best Practices
HTML CSS Best Practices
 
DHTML
DHTMLDHTML
DHTML
 
Html
HtmlHtml
Html
 
HTML and CSS Basics
HTML and CSS BasicsHTML and CSS Basics
HTML and CSS Basics
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTML
 

Similar to Web technology P B Jadhav

Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
MrAbbas
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
MrAbas
 

Similar to Web technology P B Jadhav (20)

The web context
The web contextThe web context
The web context
 
CSS
CSSCSS
CSS
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 
Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelal
 
Website designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopmentWebsite designing company_in_delhi_phpwebdevelopment
Website designing company_in_delhi_phpwebdevelopment
 
Accessible Design with HTML5 - HTML5DevConf.com May 21st San Francisco, 2012 ...
Accessible Design with HTML5 - HTML5DevConf.com May 21st San Francisco, 2012 ...Accessible Design with HTML5 - HTML5DevConf.com May 21st San Francisco, 2012 ...
Accessible Design with HTML5 - HTML5DevConf.com May 21st San Francisco, 2012 ...
 
Prototyping interactions
Prototyping interactionsPrototyping interactions
Prototyping interactions
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
HTML5
HTML5 HTML5
HTML5
 
web development process WT
web development process WTweb development process WT
web development process WT
 
xhtml_css.ppt
xhtml_css.pptxhtml_css.ppt
xhtml_css.ppt
 
Are you accessible
Are you accessibleAre you accessible
Are you accessible
 
Web Programming - 1st TA Session
Web Programming - 1st TA SessionWeb Programming - 1st TA Session
Web Programming - 1st TA Session
 
Web Design Fundamentals
Web Design FundamentalsWeb Design Fundamentals
Web Design Fundamentals
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
 
Web Fundamentals Crash Course
Web Fundamentals Crash CourseWeb Fundamentals Crash Course
Web Fundamentals Crash Course
 
Khoa dang (kay)
Khoa dang (kay)Khoa dang (kay)
Khoa dang (kay)
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websites
 
Vijay it 2 year
Vijay it 2 yearVijay it 2 year
Vijay it 2 year
 
Day of code
Day of codeDay of code
Day of code
 

More from PRASHANT JADHAV (6)

ICH P B Jadhav International Conference of Hormonisation.pptx
ICH P B Jadhav International Conference of Hormonisation.pptxICH P B Jadhav International Conference of Hormonisation.pptx
ICH P B Jadhav International Conference of Hormonisation.pptx
 
Skeletal system P. B. Jadhav
Skeletal system P. B. JadhavSkeletal system P. B. Jadhav
Skeletal system P. B. Jadhav
 
Pharmaceutical Incompatibility : Mr. P. B. Jadhav
Pharmaceutical Incompatibility : Mr. P. B. JadhavPharmaceutical Incompatibility : Mr. P. B. Jadhav
Pharmaceutical Incompatibility : Mr. P. B. Jadhav
 
Semisolid Dosage Form : Prof. P B Jadhav
Semisolid Dosage Form : Prof. P B JadhavSemisolid Dosage Form : Prof. P B Jadhav
Semisolid Dosage Form : Prof. P B Jadhav
 
PHARMACEUTICAL QUALITY ASSURANCE : Mr. Prashant Jadhav
PHARMACEUTICAL  QUALITY  ASSURANCE : Mr. Prashant JadhavPHARMACEUTICAL  QUALITY  ASSURANCE : Mr. Prashant Jadhav
PHARMACEUTICAL QUALITY ASSURANCE : Mr. Prashant Jadhav
 
Product Complaints and Recall: Quality Assurance
Product Complaints and Recall: Quality Assurance Product Complaints and Recall: Quality Assurance
Product Complaints and Recall: Quality Assurance
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health Education
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 

Web technology P B Jadhav

  • 1. Mr. P. B. Jadhav WEB TECHNOLOGY Mr. P. B. Jadhav
  • 2. A website is a collection of web pages. A web page may contain texts, graphics, sounds, animations, and movies. Web pages are developed with the help of a language called Hyper Text Markup Language(HTML). It is also a language of Internet. Mr. P. B. Jadhav
  • 3. Why Internet? Use of internet • Email • Social Networking, Chat • Information sharing • Getting updates – News around the world • Entertainment – Games, Videos and Music • Virtual classrooms • Remote Access • Online Jobs Mr. P. B. Jadhav
  • 4. Technologies Overview List of Technologies Client Side Technologies • HTML, CSS, JavaScript, VBScript • XHTML, DHTML, WML, AJAX • FLASH Server Side Technologies • ASP, PHP, Perl, JSP • ASP.NET, Java • MySQL, SQL Server, Access Mr. P. B. Jadhav
  • 5. Technologies Overview List of Technologies Some More Advanced Technologies • XML, XSLT, RSS, Atom • X-Path, XQuery, WSDL • XML-DOM, RDF • Ruby on Rails, GRAIL Framework • REST, SOAP Mr. P. B. Jadhav
  • 6. How to choose a Technology? Depends on: • What is the type of content? • Who is your audience? • Who will modify your content? • What are your Future Plans? • Availability of technology? • Your previous experience? • Portability and Data sharing Mr. P. B. Jadhav
  • 7. HTML Hyper Text Markup Language • Documents – Document = page = HTM file = topic – Content (text, images) – Tags (display commands) • Other terms – Window: browser display window – URL: Uniform Resource Locator – Hyperlink: hypertext jump to a resource – Resource: URL, image, mailto, external file Mr. P. B. Jadhav
  • 8. HTML HTML pages are tag-based documents • Really plain ASCII text files • Don't look like documents they represent • Tags indicate how processing program should display text and graphics • Processed by browsers “on the fly” • Tags usually appear in pairs • Most can be modified by attributes/values Mr. P. B. Jadhav
  • 9. That’s how this… <html> <head><title>Welcome onboard</title></head> <body bgcolor=“#f4f4f4"> <h1>Welcome</h1> <img src=“dcetech.gif" width=“222" height=“80" alt=“DCETECH" BORDER="0“ /> <h2>A Message from the Speaker </h2> <p><font color=red>Good evening! Thank you for coming here! </font></p> <p>Hello and welcome to Web technologies workshop! I'm <b>Ankit Jain,</b>, 4th year Computer Engg <a href=“http://dcetech.com"> Head DCETECH.COM </a>. Dcetech is a student portal and only one of its kind in India.It is not only a technical oriented site which caters only for engineers but its for students from any background! Also students from any educational institution can register and join Dcetech. </p> . . . </body> </html> Mr. P. B. Jadhav
  • 10. Turns into this… Mr. P. B. Jadhav
  • 11. Some HTML Tags example • START TAG • <HTML> • <HEAD> • <TITLE> • <BODY> • <H1>, <H2>, ... • <IMG ...> • <A ...> • <P> • <BR/> • <OL> • <UL> • <LI> END TAG </HTML> </HEAD> </TITLE> </BODY> </H1>, </H2>, ... </IMG> (optional) </A> </P> (none; "empty" tag) </OL> </UL> </LI> Mr. P. B. Jadhav
  • 12. Basic Structure of HTML document Example of basic tag positioning <html> <head> <title>CAP</title> </head> <body> <p>Look, I'm a paragraph! </p> </body> </html> Mr. P. B. Jadhav
  • 13. Attributes and Values • Properties, traits, or characteristics that modify the way a tag looks or acts – Usually in pairs: <body bgcolor="teal"> – Sometimes not: <option selected> • Most HTML tags can take attributes – Format of value depends on attribute • – width="150" • width="page3.htm" Mr. P. B. Jadhav
  • 14. Tables <table border="1"> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> </tr> <tr> <td>Row 2, Cell 1</td> <td>Row 2, Cell 2</td> </tr> </table> Row 1, Cell 1 Row 1, Cell 2 Row 2, Cell 1 Row 2, Cell 2 Mr. P. B. Jadhav
  • 15. Some Common Text Tags • Heading levels – h1 – h6, numbers inverse to text size <h1>Heading One</h1> <h2>Heading One</h2> • Paragraph – Probably the most common tag <p>Yada yada yada...</p> • Line break (an empty tag) – Used when <p>'s white space not wanted This line will break<br>right there Mr. P. B. Jadhav
  • 16. Ordered & Unordered Lists • Ordered (numbered) – Use <ol>...</ol> tags • Unordered (bulleted) – Use <ul>...</ul> tags • List Items make up both lists – Use same <li>...</li> tags • Lists can contain almost anything – Text, images, paragraphs, links – Even other (nested) lists, same type or not Mr. P. B. Jadhav
  • 17. CSS Concepts • Styles are named sets of formatting commands – [18pt, Arial, left aligned] "Section head" – [Bold, italic, blue] "Glossary term" – [Normal, 10pt, Verdana] "Body text" – [Italic, orange, small caps] "Bob" • Style sheets are control documents that are referenced by content documents – MS Word, other editors & desktop publishing programs have done it for years – DOT : DOC :: CSS : HTM Mr. P. B. Jadhav
  • 18. Why Use CSS? • HTML formatting is awkward and imprecise – Originally intended to deliver well organized text (aimed at structure, not formatting) – Over time, formatting elements were added that solved some problems, but created many more • W3C proposed Cascading Style Sheets – Separate format from content – Enforce consistency – Greatly simplify control & maintenance Mr. P. B. Jadhav
  • 19. What Can CSS Control? • Almost everything – Page background, colors, images, fonts and text, margins and spacing, headings, positioning, links, lists, tables, cursors, etc. • Idea is to put all formatting in CSS – To that end, many tags are "deprecated" by CSS: <font>, <basefont>, <center>…… Mr. P. B. Jadhav
  • 20. Mr. P. B. Jadhav
  • 21. THANK YOU Mr. P. B. Jadhav