SlideShare a Scribd company logo
1 of 76
Download to read offline
HTML ร— CSS
Hi, Iโ€™m Cesar Chen
@c_and_cat
Freelance Front-end developer
HTML
Hyper Text Markup Language
CSS
Cascading Style Sheets
PROGRAMMING
LANGUAGE?
PROGRAMMING
LANGUAGE?
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Paragraph</p>
</body>
</html>
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Paragraph</p>
</body>
</html>
HTML
Just TAGS!
<p>
Opening tag
</p>
Closing tag
<p lang=โ€œen-usโ€>English</p>
<p lang=โ€œen-usโ€>English</p>
ATTRIBUTE
VALUE
<p lang=โ€œzhโ€>ไธญๆ–‡</p>
Just TAGS!
<tags>content</tags>
MORE
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<p>paragraph paragraph</p>
<h2>Heading 2</h2>
<p>paragraph paragraph</p>
<h3>Heading 3</h3>
<p>paragraph paragraph</p>
</body>
</html>
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<p><i>paragraph paragraph</i></p>
<h2>Heading 2</h2>
<p><b>paragraph paragraph</b></p>
<h3>Heading 3</h3>
<p>paragraph<br />paragraph</p>
</body>
</html>
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<p><i>paragraph paragraph</i></p>
<h2>Heading 2</h2>
<p><b>paragraph paragraph</b></p>
<h3>Heading 3</h3>
<p>paragraph<br />paragraph</p>
</body>
</html>
HTML
<tags>content</tags>
<tags1>
<tag2>
content
</tag2>
</tags1>
<br />
<br />
<hr />
<input />
<img />
โ€ฆ
<hr />
<input type=โ€œtextโ€
placeholder=โ€œTypeโ€ฆโ€ />
<input type=โ€œtextโ€
placeholder=โ€œTypeโ€ฆโ€ />
<img src=โ€œpath/image.jpgโ€
alt=โ€œImageโ€ />
<img src=โ€œpath/image.jpgโ€
alt=โ€œImageโ€ />
<a href=โ€œgoogle.comโ€>Google</a>
<a href=โ€œgoogle.comโ€>Google</a>
Google
INLINE
vs
BLOCK
CLASS & ID
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>Heading 1</h1>
<p class=โ€œparagraphโ€ id=โ€œaโ€>paragraph</p>
<h2>Heading 2</h2>
<p class=โ€œparagraphโ€ id=โ€œbโ€>paragraph </p>
<h3>Heading 3</h3>
<p class=โ€œparagraphโ€ id=โ€œcโ€>paragraph</p>
</body>
</html>
HTML
CLASS vs ID
<div>
DIVIDES CONTENT
</div>
<!DOCTYPE html>
<html>
<head></head>
<body>
<div id=โ€œheaderโ€>
<h1>Heading 1</h1>
<p class=โ€œparagraphโ€ id=โ€œaโ€>paragraph</p>
</div>
<div id=โ€œcontentโ€>
<h2>Heading 2</h2>
<p class=โ€œparagraphโ€ id=โ€œbโ€>paragraph </p>
<h3>Heading 3</h3>
<p class=โ€œparagraphโ€ id=โ€œcโ€>paragraph</p>
</div>
</body>
</html>
HTML
<div>
BLOCK ELEMENT
</div>
<span>
INLINE ELEMENT
</span>
Questions?
HTML ร— CSS
{CSS}
STYLES
<HTML>
Remember?
CLASS & ID
<!DOCTYPE html>
<html>
<head></head>
<body>
<div id=โ€œheaderโ€>
<h1>Heading 1</h1>
<p class=โ€œparagraphโ€ id=โ€œaโ€>paragraph</p>
</div>
<div id=โ€œcontentโ€>
<h2>Heading 2</h2>
<p class=โ€œparagraphโ€ id=โ€œbโ€>paragraph </p>
<h3>Heading 3</h3>
<p class=โ€œparagraphโ€ id=โ€œcโ€>paragraph</p>
</div>
</body>
</html>
HTML
CSS
#a {
font-family: cursive;
color: green;
font-size:36px;
}
CSS
#a {
font-family: cursive;
color: green;
font-size:36px;
}
Prop.
Selector
Value
DEMO
{CSS} Makes <HTML>
Looks Good
<!DOCTYPE html>
<html>
<head>
<link href=โ€œ/path/style.cssโ€ type=โ€œtext/cssโ€
rel=โ€œstlyesheetโ€ />
<!- - or - !"
<style>
/* styles go here */
</style>
</head>
<body>
</body>
</html>
HTML
USING IT
RULES
<h1>YOLO</h1>
<p id=โ€œintroโ€>
SWAG
<i>SWAG</i>
<b>SWAG</b>
</p>
<p>#YOLOSWAG #OBEY</p>
HTML
* {
font-family: Helvetica, Arial, sans;
}
h1 {
font-family: โ€œCooper Blackโ€;
}
i {
color: green;
}
i {
color: red;
}
b {
color: pink;
}
p b {
color: blue !important
}
p b {
color: violet;
}
p#intro {
font-size: 12px;
}
p {
font-size: 10px;
}
CSS
FONT-SIZE UNITS
1em
12px
12pt
100%
based on size of โ€œmโ€
based on pixels
based on standard
based on 16px font
WIDTH & HEIGHT
<div>
HAS WIDTH & HEIGHT
</div>
#article {
width: 100px;
height: 100px;
}
CSS
#article {
width: 100%;
height: 100px;
}
CSS
MARGIN & PADDING
ELEMENT
PADDING
ELEMENT
PADDING
padding: 10px 20px 30px 40px;
ELEMENT
PADDING
padding: 10px 20px 30px 40px;
N E S W
10px
20px
30px
40px
ELEMENT
PADDING
MARGIN
ELEMENT
PADDING
MARGIN
margin: 10px 5px 10px 20px;
Any Questions?
RESOURCES
โ€ข W3Schools - http://www.w3schools.com/
โ€ข Codepen - http://codepen.io/
THANKS

More Related Content

What's hot

Learning Html
Learning HtmlLearning Html
Learning HtmlDamian Gonz
ย 
Basic HTML
Basic HTMLBasic HTML
Basic HTMLSayan De
ย 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Gil Fink
ย 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
ย 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
ย 
Html & CSS
Html & CSSHtml & CSS
Html & CSSJainilSampat
ย 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSMario Hernandez
ย 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpcasestudyhelp
ย 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by MukeshMukesh Kumar
ย 
Html 5 tutorial - By Bally Chohan
Html 5 tutorial - By Bally ChohanHtml 5 tutorial - By Bally Chohan
Html 5 tutorial - By Bally Chohanballychohanuk
ย 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentationumesh patil
ย 
Introduction to BOOTSTRAP
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAPJeanie Arnoco
ย 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & JavascriptDavid Lindkvist
ย 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSSSyed Sami
ย 
HTML Introduction
HTML IntroductionHTML Introduction
HTML IntroductionHameda Hurmat
ย 
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 ScriptFahim Abdullah
ย 

What's hot (20)

Learning Html
Learning HtmlLearning Html
Learning Html
ย 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
ย 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
ย 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
ย 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
ย 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
ย 
Html
HtmlHtml
Html
ย 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
ย 
Html & CSS
Html & CSSHtml & CSS
Html & CSS
ย 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
ย 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
ย 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
ย 
Html 5 tutorial - By Bally Chohan
Html 5 tutorial - By Bally ChohanHtml 5 tutorial - By Bally Chohan
Html 5 tutorial - By Bally Chohan
ย 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentation
ย 
Introduction to BOOTSTRAP
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAP
ย 
CSS ppt
CSS pptCSS ppt
CSS ppt
ย 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
ย 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
ย 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
ย 
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
ย 

Similar to HTML X CSS

Sample html basic projects
Sample html basic projectsSample html basic projects
Sample html basic projectsDigital Shende
ย 
Css, CaseCading Style Sheet
Css, CaseCading Style SheetCss, CaseCading Style Sheet
Css, CaseCading Style SheetIshaq Shinwari
ย 
Web Design Course - Lecture 2 - HTML Tag, Element, Attributes
Web Design Course - Lecture 2 - HTML Tag, Element, AttributesWeb Design Course - Lecture 2 - HTML Tag, Element, Attributes
Web Design Course - Lecture 2 - HTML Tag, Element, AttributesAl-Mamun Sarkar
ย 
Intro to WebSite Development ( Text properties and margins )
Intro to WebSite Development ( Text properties and margins )Intro to WebSite Development ( Text properties and margins )
Intro to WebSite Development ( Text properties and margins )Abdul Basit Kayani
ย 
Html basics 1
Html basics 1Html basics 1
Html basics 1H K
ย 
SDP_HTML.pptx
SDP_HTML.pptxSDP_HTML.pptx
SDP_HTML.pptxVani011
ย 
6. Css
6. Css6. Css
6. CssGao Fuyan
ย 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skillsBoneyGawande
ย 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]Dalibor Gogic
ย 
Introduction to html class-1
Introduction to html class-1Introduction to html class-1
Introduction to html class-1NoumanBalochHere
ย 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web DevelopmentFrank Wu
ย 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersPrakritiDhang
ย 
Getting into HTML
Getting into HTMLGetting into HTML
Getting into HTMLispkosova
ย 
BEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADEBEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADErana usman
ย 
Chapter 6 html
Chapter 6 htmlChapter 6 html
Chapter 6 htmlhome
ย 
Learning html & dhtml
Learning html & dhtmlLearning html & dhtml
Learning html & dhtmlRudresh Shrivastav
ย 
VAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptxVAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptxVAIBHAV481101
ย 
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzlutsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzlutsavsingh265
ย 
Create Fashion Blog using HTML
Create Fashion Blog using HTMLCreate Fashion Blog using HTML
Create Fashion Blog using HTMLRanojit Kumar Mohonta
ย 

Similar to HTML X CSS (20)

Sample html basic projects
Sample html basic projectsSample html basic projects
Sample html basic projects
ย 
Css, CaseCading Style Sheet
Css, CaseCading Style SheetCss, CaseCading Style Sheet
Css, CaseCading Style Sheet
ย 
Web Design Course - Lecture 2 - HTML Tag, Element, Attributes
Web Design Course - Lecture 2 - HTML Tag, Element, AttributesWeb Design Course - Lecture 2 - HTML Tag, Element, Attributes
Web Design Course - Lecture 2 - HTML Tag, Element, Attributes
ย 
Intro to WebSite Development ( Text properties and margins )
Intro to WebSite Development ( Text properties and margins )Intro to WebSite Development ( Text properties and margins )
Intro to WebSite Development ( Text properties and margins )
ย 
Html basics 1
Html basics 1Html basics 1
Html basics 1
ย 
SDP_HTML.pptx
SDP_HTML.pptxSDP_HTML.pptx
SDP_HTML.pptx
ย 
6. Css
6. Css6. Css
6. Css
ย 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
ย 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
ย 
Introduction to html class-1
Introduction to html class-1Introduction to html class-1
Introduction to html class-1
ย 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web Development
ย 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginners
ย 
Getting into HTML
Getting into HTMLGetting into HTML
Getting into HTML
ย 
BEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADEBEAUTIFUL CSS PRESENTATION EASY TO MADE
BEAUTIFUL CSS PRESENTATION EASY TO MADE
ย 
Chapter 6 html
Chapter 6 htmlChapter 6 html
Chapter 6 html
ย 
Learning html & dhtml
Learning html & dhtmlLearning html & dhtml
Learning html & dhtml
ย 
VAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptxVAIBHAV JAIN WEB TECHNOLOGY.pptx
VAIBHAV JAIN WEB TECHNOLOGY.pptx
ย 
wpsession9.pptx
wpsession9.pptxwpsession9.pptx
wpsession9.pptx
ย 
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzlutsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
utsav1.pptxjxnclbshjdcn;kJDucbnsD>NVzljfbmlzl
ย 
Create Fashion Blog using HTML
Create Fashion Blog using HTMLCreate Fashion Blog using HTML
Create Fashion Blog using HTML
ย 

Recently uploaded

(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...Escorts Call Girls
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...nirzagarg
ย 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceEscorts Call Girls
ย 
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceBusty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceDelhi Call girls
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...tanu pandey
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...SUHANI PANDEY
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
ย 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftAanSulistiyo
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
ย 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
ย 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
ย 

Recently uploaded (20)

Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
ย 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
ย 
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts ServiceReal Escorts in Al Nahda +971524965298 Dubai Escorts Service
Real Escorts in Al Nahda +971524965298 Dubai Escorts Service
ย 
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort ServiceBusty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
Busty DesiโšกCall Girls in Vasundhara Ghaziabad >เผ’8448380779 Escort Service
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
ย 
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
Pirangut | Call Girls Pune Phone No 8005736733 Elite Escort Service Available...
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
ย 
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐ŸฅตLow Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
Low Sexy Call Girls In Mohali 9053900678 ๐ŸฅตHave Save And Good Place ๐Ÿฅต
ย 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
ย 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
ย 
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Himatnagar 7001035870 Whatsapp Number, 24/07 Booking
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
ย 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 

HTML X CSS