SlideShare a Scribd company logo
1 of 78
Cascading Style Sheets Hatem Mahmoud [email_address]
Part 1
Introduction
What is CSS?
What is CSS? ,[object Object]
Example: <p> An <strong> important </strong><font color=&quot;#FFFF00&quot;> paragraph </font> . </p> ,[object Object],An  important   paragraph . ,[object Object]
What is CSS? Layers of a web page: ,[object Object]
Presentation: How the content will appear to a human through a web browser, text reader, etc.
Behavior: Real-time user interaction with the page: validation, sorting, drag-n-drop, etc.
What is CSS? ,[object Object]
Versions ,[object Object]
1998 – CSS2 with advanced features: table cell display, sheets could import others, targeted different output media, etc.
Some parts of CSS2 were very difficult to implement, so the W3C decided to revise the specification
Versions ,[object Object]
References to CSS2 usually mean CSS2.1
CSS2.1 is the latest and current revision of the CSS2 specification
CSS3 specification is still in draft but some parts have been implemented by some browsers
Linking CSS to HTML 1) Inline Styles:  Using the  style  attribute which is supported by every HTML tag: <h1 style=&quot;color:red;&quot;> My Headline </h1> ,[object Object]
Linking CSS to HTML 2) Embedded Styles:  Using the  style  tag: <style type=&quot;text/css&quot;> h1{ font-family:Verdana }  //all h1 tags .warning{ color:red }  //tags with this class #footer{ font-size:10px }  //tag with this id </style> <h1> My Header </h1> <p  class=”warning” > WARNING </p> <div  id=”footer” > eSpace 2008 </div> ,[object Object]
Linking CSS to HTML 2) External Styles:  Using separate files: mypage.html <head>  <link type= &quot;text/css&quot;  href= &quot;nice.css&quot; /> </head> nice.css h1{ font-family:Verdana } .warning{ color:red } #footer{ font-size:10px }
Linking CSS to HTML ,[object Object]
Why CSS? ,[object Object]
Easy to maintain
Accessibility to different users with different devices.
CSS caching = less bandwidth + fast loading
CSS Syntax
General Syntax ,[object Object],body{font-family:Verdana; font-size:9pt;}
General Syntax ,[object Object]
Whitespace and line breaks have no semantic value
Comments: /*  This is  a comment */
Properties ,[object Object],div { color: black; } span {  color: #00003D;  font-size: 24px; font-family: Verdana, Arial;  font-style: italic; font-weight: bold; text-decoration: underline; text-align:justify; ... }
Properties ,[object Object],px  = Pixels on the screen em  = Current font size ex  = Height of lowercase &quot;x&quot; mm  = Millimeters cm  = Centimeters in  = Inches (1 inch = 2,54 centimeters) pt  = Points (1 point = 1/72 inches) pc  = Picas (1 pica = 12 points)
Properties ,[object Object],div { background-color: Black; } body { background-image: url(logo.gif);  background-color: white;  background-attachment: fixed;  background-position: right top;  background-repeat: no-repeat; } body { background: white url(logo.gif)   repeat-x fixed right top; }
Selectors 1) Universal selector: * { margin: 0; padding: 0; } 2) Element type selector: span { font-family: Verdana } 3) Class selector: p.big { font-weight: bold; }
Selectors 4) ID selector: #menu { font-size: 22pt; } // unique id 5) Attribute selector: input[type=&quot;submit&quot;] { color: blue; }
Selectors ,[object Object],a[href ^ =&quot;http:&quot;]  { ... } /* matches a elements whose href attribute  value starts with &quot;http:&quot; */ img[src $ =&quot;.png&quot;]  { ... } /* matches img elements whose src  attribute value ends with &quot;.png&quot; */ div[id * =&quot;foo&quot;]  { ... } /* matches div elements whose id attribute  value contains &quot;foo&quot; */
Selectors ,[object Object],div, p { font-family: Verdana } a img { border: none } ul li ol li { color: blue } #menu a, div li, .note { color: red }
Selectors ,[object Object],ul>li { ... } <ul>   <li>   <ol> <li> Will not be matched. </li>   </ol> </li> </ul>
Selectors ,[object Object],- sibling = has the same parent element - adjacent = immediately following h2+p { ... } <div> <h2> Heading </h2> <p> Will be matched. </p> <p> Will not be matched. </p> </div>
Selectors ,[object Object],- sibling = has the same parent element - general = just following h2~p { ... }
Selectors ,[object Object],<p> Will not be matched. </p> <h2> Heading </h2> <p> Will be matched. </p> <div> <p> Will not be matched. </p> </div> <p> Will be matched. </p>
Pseudo-classes (implicit) a:link { ... } //Normal a:visited { ... } //Visited a:hover { ... } //Mouse hovers a.menu:hover { ... } a:active { ... } // Clicking textarea:focus { ... } li:first-child { ... } :lang(fr) { ... }
Pseudo-classes (implicit) ,[object Object],:nth-child(N) :nth-last-child(N) :nth-of-type(N) :nth-last-of-type(N) :last-child :first-of-type :last-of-type :only-child :only-of-type :root :empty :target :enabled :disabled :checked :not(S)
Pseudo-elements (virtual) ,[object Object],p :first-letter  { ... } p :first-line  { ... }
Pseudo-elements (virtual) ,[object Object],#breadcrumbs :before  { content : &quot;You are here:&quot;; margin-right: 0.5em; } span.centimeters :after  { content : &quot;cm&quot;; color: #cccccc; }
Pseudo-elements (virtual) ,[object Object],:: selection { ... } //represents a part of the document that’s been highlighted by the user, including text in editable text fields
The Cascade
The Cascade ,[object Object]
The cascade combines the importance, origin, specificity, and source order of the style declarations to determine which declaration should be applied to a given element.
The Cascade
The Cascade ,[object Object],//Normal declaration p {font-size: 1em} //Important declaration p {font-size: 1em  !important ;}
The Cascade ,[object Object],1. User agent declarations 2. Normal declarations in user style sheets 3. Normal declarations in author style sheets 4. Important declarations in author style sheets 5. Important declarations in user style sheets
The Cascade ,[object Object],When multiple declarations (with the same importance and origin) try to set the same property to an element, the declaration with the most specific selector will take precedence.
The Cascade ,[object Object],1. Inline styles (highest specificity) 2. Count ID selectors 3. Count class selectors  ( .test ), attribute selectors   ( [type=&quot;submit&quot;] ), and pseudo-classes ( :hover ) 4. Count element type selectors ( div ) and    pseudo-elements ( :first-letter )
The Cascade ,[object Object],1. For a given property, find all declarations that apply to a specific element. (user agent, author, user-defined). 2. Sort according to levels of importance and origins. 3. Sort declarations with the same level of importance and origin by selector specificity. 4. If declarations have the same level of importance, origin, and specificity, sort them by the order in which they’re specified
Inheritance ,[object Object],div { font-size: 20px; } <div>   <p>   My  <em> cool </em>  paragraph is  <a href=&quot;#&quot;> here </a>.   </p> </div>
Inheritance ,[object Object]
But you can enforce it: p { background-image:  inherit ; }
CSS Layout
Block vs Inline 1) HTML block-level elements: ,[object Object]
Begin on new lines
Examples:  <h1>..<h6> ,  <p> ,  <ul> ,  <ol> ,  <li> ,  <table> ,  <tr> ,  <th> ,  <td> ,  <form> ,  <select> ,  <input> ,  <div> , etc.
Block vs Inline 2) HTML Inline (text-level) elements: ,[object Object]
May contain only text and other inline elements
Don't begin on new lines
Examples:  <em> ,  <strong> ,  <a> ,  <img> ,  <abbr> ,  <span> , etc.
Block vs Inline ,[object Object],#menu li { display:  inline ; } #menu a { display:  block ; } ,[object Object]
Browser Work 1) Parsing: The browser reads the markup and builds a document object model (DOM) tree of nodes.
Browser Work ,[object Object]
Browser Work 2) Rendering: ,[object Object]
Inline elements generate inline boxes
Block elements generate block boxes
CSS Box ,[object Object]
CSS Box ,[object Object]
CSS Box ,[object Object],[object Object]
height = 252px
CSS Box ,[object Object]
Any margin, padding, or border will damage the layout

More Related Content

What's hot

What's hot (20)

Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Css ppt
Css pptCss ppt
Css ppt
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Javascript 101
Javascript 101Javascript 101
Javascript 101
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overview
 
HTML5 - Forms
HTML5 - FormsHTML5 - Forms
HTML5 - Forms
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
 
Css3
Css3Css3
Css3
 
CSS
CSSCSS
CSS
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Html coding
Html codingHtml coding
Html coding
 
Html ppt
Html pptHtml ppt
Html ppt
 
2. HTML forms
2. HTML forms2. HTML forms
2. HTML forms
 
HTML5 audio & video
HTML5 audio & videoHTML5 audio & video
HTML5 audio & video
 

Viewers also liked

Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02Hatem Mahmoud
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSSAmit Tyagi
 
Efficient, maintainable CSS
Efficient, maintainable CSSEfficient, maintainable CSS
Efficient, maintainable CSSRuss Weakley
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introductionapnwebdev
 
Revista Presencia Divina Volumen 5
Revista Presencia Divina Volumen 5Revista Presencia Divina Volumen 5
Revista Presencia Divina Volumen 5HJHERRERA
 
Beste sauna in wesseling aus
Beste sauna in wesseling ausBeste sauna in wesseling aus
Beste sauna in wesseling ausrobertdanzak
 
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...Lea-María Louzada
 
INNONESS - Innovationsmanagement & Business Developmet
INNONESS - Innovationsmanagement & Business DevelopmetINNONESS - Innovationsmanagement & Business Developmet
INNONESS - Innovationsmanagement & Business DevelopmetWolfgang Weber
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheetvijayta
 
Physica b 08
Physica b 08Physica b 08
Physica b 08aman2395
 
Compartilhando o Facebook
Compartilhando o FacebookCompartilhando o Facebook
Compartilhando o FacebookIque Muniz
 
Prospectiva e Foresight - BuzzMedia Jul15
Prospectiva e Foresight - BuzzMedia Jul15Prospectiva e Foresight - BuzzMedia Jul15
Prospectiva e Foresight - BuzzMedia Jul15Luis Rasquilha
 
Brand Dating: How to Pitch and work with Multiple Brands
Brand Dating: How to Pitch and work with Multiple BrandsBrand Dating: How to Pitch and work with Multiple Brands
Brand Dating: How to Pitch and work with Multiple BrandsFLBlogCon
 
Nested lists in HTML
Nested lists in HTMLNested lists in HTML
Nested lists in HTMLfryajust
 
Gain dan operasional amplifier (op amp)
Gain dan operasional amplifier (op amp)Gain dan operasional amplifier (op amp)
Gain dan operasional amplifier (op amp)Universitas Tidar
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5Sayed Ahmed
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheetMichael Jhon
 

Viewers also liked (20)

Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 02
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Efficient, maintainable CSS
Efficient, maintainable CSSEfficient, maintainable CSS
Efficient, maintainable CSS
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
 
Css 2010
Css 2010Css 2010
Css 2010
 
Revista Presencia Divina Volumen 5
Revista Presencia Divina Volumen 5Revista Presencia Divina Volumen 5
Revista Presencia Divina Volumen 5
 
Beste sauna in wesseling aus
Beste sauna in wesseling ausBeste sauna in wesseling aus
Beste sauna in wesseling aus
 
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...
Wettbewerbliche Ausschreibung: die Förderprogramme effelux, effeLED und effeS...
 
TpM2013: Pascal Bieri, Switzerland Tourism : Les innovations digitales au ser...
TpM2013: Pascal Bieri, Switzerland Tourism : Les innovations digitales au ser...TpM2013: Pascal Bieri, Switzerland Tourism : Les innovations digitales au ser...
TpM2013: Pascal Bieri, Switzerland Tourism : Les innovations digitales au ser...
 
INNONESS - Innovationsmanagement & Business Developmet
INNONESS - Innovationsmanagement & Business DevelopmetINNONESS - Innovationsmanagement & Business Developmet
INNONESS - Innovationsmanagement & Business Developmet
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
 
Physica b 08
Physica b 08Physica b 08
Physica b 08
 
Compartilhando o Facebook
Compartilhando o FacebookCompartilhando o Facebook
Compartilhando o Facebook
 
Prospectiva e Foresight - BuzzMedia Jul15
Prospectiva e Foresight - BuzzMedia Jul15Prospectiva e Foresight - BuzzMedia Jul15
Prospectiva e Foresight - BuzzMedia Jul15
 
Brand Dating: How to Pitch and work with Multiple Brands
Brand Dating: How to Pitch and work with Multiple BrandsBrand Dating: How to Pitch and work with Multiple Brands
Brand Dating: How to Pitch and work with Multiple Brands
 
Nested lists in HTML
Nested lists in HTMLNested lists in HTML
Nested lists in HTML
 
Amplifier &amp; op amp
Amplifier &amp; op   ampAmplifier &amp; op   amp
Amplifier &amp; op amp
 
Gain dan operasional amplifier (op amp)
Gain dan operasional amplifier (op amp)Gain dan operasional amplifier (op amp)
Gain dan operasional amplifier (op amp)
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 

Similar to Cascading Style Sheets - Part 01

Introduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and JqueryIntroduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and Jqueryvaluebound
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxKADAMBARIPUROHIT
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxAliRaza899305
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop NotesPamela Fox
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfDakshPratapSingh1
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptxAlisha Kamat
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptxGDSCVJTI
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptxAlisha Kamat
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.pptssuser568d77
 
1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdf1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdfAAFREEN SHAIKH
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssTesfaye Yenealem
 

Similar to Cascading Style Sheets - Part 01 (20)

Introduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and JqueryIntroduction to Html5, css, Javascript and Jquery
Introduction to Html5, css, Javascript and Jquery
 
CSS
CSSCSS
CSS
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
CSS Part I
CSS Part ICSS Part I
CSS Part I
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
Html advance
Html advanceHtml advance
Html advance
 
HTML-Advance.pptx
HTML-Advance.pptxHTML-Advance.pptx
HTML-Advance.pptx
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
CSS
CSSCSS
CSS
 
CSS
CSSCSS
CSS
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
 
Introduction to Web Development.pptx
Introduction to Web Development.pptxIntroduction to Web Development.pptx
Introduction to Web Development.pptx
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdf1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdf
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
 
Html Expression Web
Html Expression WebHtml Expression Web
Html Expression Web
 

Recently uploaded

Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️soniya singh
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...sonalitrivedi431
 
infant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptxinfant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptxsuhanimunjal27
 
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...amitlee9823
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...amitlee9823
 

Recently uploaded (20)

Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Nagavara ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
infant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptxinfant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptx
 
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 

Cascading Style Sheets - Part 01