SlideShare uma empresa Scribd logo
1 de 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

Mais conteúdo relacionado

Mais procurados

CSS - Text Properties
CSS - Text PropertiesCSS - Text Properties
CSS - Text Properties
hstryk
 

Mais procurados (20)

CSS
CSSCSS
CSS
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Css
CssCss
Css
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
HTML Frameset & Inline Frame
HTML Frameset & Inline FrameHTML Frameset & Inline Frame
HTML Frameset & Inline Frame
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
CSS - Text Properties
CSS - Text PropertiesCSS - Text Properties
CSS - Text Properties
 
CSS
CSSCSS
CSS
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Introduction to CSS Borders - Lesson 4
Introduction to CSS Borders - Lesson 4Introduction to CSS Borders - Lesson 4
Introduction to CSS Borders - Lesson 4
 
CSS ppt
CSS pptCSS ppt
CSS ppt
 
CSS Grid
CSS GridCSS Grid
CSS Grid
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
CSS notes
CSS notesCSS notes
CSS notes
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Css selectors
Css selectorsCss selectors
Css selectors
 
Javascript
JavascriptJavascript
Javascript
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
CSS
CSSCSS
CSS
 

Destaque

Destaque (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
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
 
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
 
Example an op amp circuit analysis lecture
Example an op amp circuit analysis lectureExample an op amp circuit analysis lecture
Example an op amp circuit analysis lecture
 

Semelhante a Cascading Style Sheets - Part 01

Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 

Semelhante a 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
 
Html Expression Web
Html Expression WebHtml Expression Web
Html Expression Web
 
HTML5 Fundamentals
HTML5 FundamentalsHTML5 Fundamentals
HTML5 Fundamentals
 

Último

Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion pills in Kuwait Cytotec pills in Kuwait
 
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
nirzagarg
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
home
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
wpkuukw
 
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
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
amitlee9823
 
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
 

Último (20)

❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
 
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night StandCall Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Jp Nagar ☎ 7737669865 🥵 Book Your One night Stand
 
Book Paid In Vashi In 8976425520 Navi Mumbai Call Girls
Book Paid In Vashi In 8976425520 Navi Mumbai Call GirlsBook Paid In Vashi In 8976425520 Navi Mumbai Call Girls
Book Paid In Vashi In 8976425520 Navi Mumbai Call Girls
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
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 ...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
 
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
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)
 

Cascading Style Sheets - Part 01