SlideShare uma empresa Scribd logo
1 de 106
Baixar para ler offline
Responsive Typography 
https://flic.kr/p/2mjtwC 
Clarissa Peterson 
@clarissa
Communication 
https://flic.kr/p/6xyFnt
Font Size 
https://flic.kr/p/4r1D8w
https://flic.kr/p/eYEFGY 
Ems
1em = default
2em = twice as big 
1em = default
2em = twice as big 
1em = default 
.5em = half as big
h1 { font-size: 3em; } 
h2 { font-size: 2em; } 
h3 { font-size: 1.5em; } 
p { font-size: 1em; }
h1 { font-size: 3em; } 
h2 { font-size: 2em; } 
h3 { font-size: 1.5em; }
h1 { font-size: 3em; } 
h2 { font-size: 2em; } 
h3 { font-size: 1.5em; }
<p>This is 1 em.</p> 
<div>This is 2 ems <span>(and 1.5 ems) 
</span>.</div>
<p>This is 1 em.</p> 
<div>This is 2 ems <span>(and 1.5 ems) 
</span>.</div> 
p { font-size: 1em; } 
div { font-size: 2em; } 
span { font-size: 1.5em; }
<p>This is 1 em.</p> 
<div>This is 2 ems <span>(and 1.5 ems) 
</span>.</div> 
p { font-size: 1em; } 
div { font-size: 2em; } 
span { font-size: 1.5em; }
Thoughtful CSS 
https://flic.kr/p/bUxzCm
div { font-size: 1.1em; }
div { font-size: 1.2em; }
body { font-size: 100%; }
http://alistapart.com
https://flic.kr/p/8iNCNU
Scale 
https://flic.kr/p/dhufQk
http://www.oliverharvey.co.uk/
http://www.oliverharvey.co.uk/
http://www.linksture.com/
http://www.linksture.com/
http://skinnyties.com/
http://skinnyties.com/
https://flic.kr/p/5a4L3p 
Rems
html { font-size: 100%; }
Fallback 
https://flic.kr/p/GedyD
h1 { font-size: 32px; font-size: 2rem; }
Line Height (Leading) 
https://flic.kr/p/4EDFYF
p { line-height: 1; } 
p { line-height: 2; }
p { line-height: 1; }
p { line-height: 2; }
p { line-height: 1.4; }
p { line-height: 1.3 }
p { line-height: 1.3 } 
@media only screen and (min-width: 30em) { 
p { line-height: 1.4 } 
}
p { line-height: 1.3 } 
@media only screen and (min-width: 30em) { 
p { line-height: 1.4 } 
} 
@media only screen and (min-width: 60em) { 
p { line-height: 1.5 } 
}
Vertical Margins 
https://flic.kr/p/4qc5EB
p { 
line-height: 1.5; 
margin-top: 1.5em; 
margin-bottom: 1.5em; 
}
Line Length (Measure) 
http://en.wikipedia.org/wiki/File:Metal_movable_type.jpg
45-75 Characters
74 
72 
69 
69 
65 
58 
65 
73 
68 
67 
66
<p>These stories are true. Although I have 
left <span class=”testing”>the strict line 
of historical</span> truth in many places, 
the animals in this book were all real 
characters.</p>
<p>These stories are true. Although I have 
left <span class=”testing”>the strict line 
of historical</span> truth in many places, 
the animals in this book were all real 
characters.</p> 
.testing { color: #f00; }
<p>These stories are true. Although I have 
left <span class=”testing”>the strict line 
of historical</span> truth in many places, 
the animals in this book were all real 
characters.</p> 
.testing { color: #f00; }
http://codepen.io/chriscoyier/pen/atebf
Media Queries 
https://flic.kr/p/ajTNcB
https://flic.kr/p/8U1KwJ
article p { 
line-height: 1.3; 
margin: 1.3em 0; 
} 
article { 
width: 94%; 
margin: auto; 
}
max-width 
https://flic.kr/p/7nCGk3
article { max-width: 28em; }
article { max-width: 28em; }
@media only screen and (min-width:48em) { 
article { font-size: 1.1em; } 
article p { line-height: 1.4; 
margin: 1.4em auto; } 
}
http://www.mqtest.io
@media only screen and (min-width:60em) { 
article { font-size: 1.2em; } 
article p { line-height: 1.5; 
margin: 1.5em auto; } 
}
Alignment & Hyphenation 
https://flic.kr/p/8veLPW
.hyphenate { 
-webkit-hyphens: auto; 
-moz-hyphens: auto; 
hyphens: auto; 
}
@media only screen and (max-width: 40em) { 
.hyphenate { 
-webkit-hyphens: auto; 
-moz-hyphens: auto; 
hyphens: auto; 
} 
}
<html lang="en">
Easy to read 
https://flic.kr/p/8iCtLv
article p:first-of-type { 
font-size: 1.2em; 
}
Typeface 
https://flic.kr/p/5q1Qj1
#intro { 
font-size: 1em; 
font-family: Helvetica, sans-serif; 
}
#intro { 
font-size: 1em; 
font-family: Helvetica, sans-serif; 
} 
@media only screen and (min-width:30em) { 
#intro { 
font-size: 1.2em; 
font-family: Populaire, sans-serif; 
text-transform: uppercase; 
} 
}
Performance
Web Fonts 
https://flic.kr/p/51wXrK
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
src: local('Example Font'), 
url('ExampleFont.eot?#iefix') 
format('embedded-opentype'), 
url('ExampleFont.woff') format('woff'), 
url('ExampleFont.ttf') format('truetype'), 
url('ExampleFont.svg') format('svg'); 
font-style: normal; 
font-weight: 400; 
}
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
src: local('Example Font'), 
url('ExampleFont.eot?#iefix') 
format('embedded-opentype'), 
url('ExampleFont.woff') format('woff'), 
url('ExampleFont.ttf') format('truetype'), 
url('ExampleFont.svg') format('svg'); 
font-style: normal; 
font-weight: 400; 
}
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
src: local('Example Font'), 
url('ExampleFont.eot?#iefix') 
format('embedded-opentype'), 
url('ExampleFont.woff') format('woff'), 
url('ExampleFont.ttf') format('truetype'), 
url('ExampleFont.svg') format('svg'); 
font-style: normal; 
font-weight: 400; 
}
Use fewer fonts
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
}
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
} 
p { font-family: Arial, sans-serif; }
@font-face { 
font-family: ExampleFont; 
src: url('ExampleFont.eot'); 
} 
p { font-family: Arial, sans-serif; } 
@media only screen and (min-width: 30em) { 
p { font-family: ExampleFont, Arial, 
sans-serif; } 
}
System Fonts 
https://flic.kr/p/eiyWiy
http://www.jordanm.co.uk/tinytype
h1 { font-family: Helvetica, Arial, 'Droid 
Sans', sans-serif; } 
http://www.jordanm.co.uk/tinytype
<link href="http://fonts.googleapis.com/ 
css?family=Josefin+Slab 
&text=TitleofWebsite" rel="stylesheet" 
type="text/css">
Communication 
https://flic.kr/p/6xyFnt
https://flic.kr/p/cdVB9h 
Clarissa Peterson 
Peterson/Kandy 
clarissapeterson.com 
@clarissa

Mais conteúdo relacionado

Mais procurados

BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...
BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...
BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...Tom Pool
 
Class 3 create an absolute layout with css abs position (aptana)
Class 3  create an absolute layout with css abs position (aptana)Class 3  create an absolute layout with css abs position (aptana)
Class 3 create an absolute layout with css abs position (aptana)Erin M. Kidwell
 
Cascading Style Speelgoed
Cascading Style SpeelgoedCascading Style Speelgoed
Cascading Style SpeelgoedStijn Vogels
 
Don't scrape, Glean!
Don't scrape, Glean!Don't scrape, Glean!
Don't scrape, Glean!tommorris
 

Mais procurados (6)

BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...
BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...
BrightonSEO April 2019 - Tom Pool - Chrome Puppeteer, Fake Googlebot & Monito...
 
Class 3 create an absolute layout with css abs position (aptana)
Class 3  create an absolute layout with css abs position (aptana)Class 3  create an absolute layout with css abs position (aptana)
Class 3 create an absolute layout with css abs position (aptana)
 
Css for nondesigners
Css for nondesignersCss for nondesigners
Css for nondesigners
 
Cascading Style Speelgoed
Cascading Style SpeelgoedCascading Style Speelgoed
Cascading Style Speelgoed
 
Css3 101
Css3 101Css3 101
Css3 101
 
Don't scrape, Glean!
Don't scrape, Glean!Don't scrape, Glean!
Don't scrape, Glean!
 

Destaque

Type on the Web (with WordPress)
Type on the Web (with WordPress)Type on the Web (with WordPress)
Type on the Web (with WordPress)Tadpole Collective
 
Web Typography Fundamentals: From Gutenberg to Google v1
Web Typography Fundamentals: From Gutenberg to Google  v1Web Typography Fundamentals: From Gutenberg to Google  v1
Web Typography Fundamentals: From Gutenberg to Google v1billcenglish
 
A crash course in typography
A crash course in typographyA crash course in typography
A crash course in typographyMigle Migle
 
The Power of Typography
The Power of TypographyThe Power of Typography
The Power of Typography[x]cube LABS
 
Webfonts: Demystified
Webfonts: DemystifiedWebfonts: Demystified
Webfonts: DemystifiedMel Choyce
 
Web Typography: A (Brief) Review
Web Typography: A (Brief) ReviewWeb Typography: A (Brief) Review
Web Typography: A (Brief) ReviewDan Rubin
 
Beautiful Layouts Through Beautiful Type
Beautiful Layouts Through Beautiful TypeBeautiful Layouts Through Beautiful Type
Beautiful Layouts Through Beautiful Typejeff_croft
 
Modernist Typography and the Swiss grid - Carlo Giannasca
Modernist Typography and the Swiss grid - Carlo GiannascaModernist Typography and the Swiss grid - Carlo Giannasca
Modernist Typography and the Swiss grid - Carlo GiannascaFrostSydney
 
Typography Essentials: Part 1
Typography Essentials: Part 1Typography Essentials: Part 1
Typography Essentials: Part 1Jennifer Janviere
 
Responsive Design Heaven & Hell
Responsive Design Heaven & HellResponsive Design Heaven & Hell
Responsive Design Heaven & HellClarissa Peterson
 
Creating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly FormsCreating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly FormsClarissa Peterson
 
XML Schema Difference Analysis
XML Schema Difference AnalysisXML Schema Difference Analysis
XML Schema Difference Analysisartcolman
 
The power of information - easy read version
The power of information - easy read versionThe power of information - easy read version
The power of information - easy read versionDepartment of Health
 
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...OlinData
 
Understanding Java byte code and the class file format
Understanding Java byte code and the class file formatUnderstanding Java byte code and the class file format
Understanding Java byte code and the class file formatRafael Winterhalter
 

Destaque (20)

Type on the Web (with WordPress)
Type on the Web (with WordPress)Type on the Web (with WordPress)
Type on the Web (with WordPress)
 
Web Typography Fundamentals: From Gutenberg to Google v1
Web Typography Fundamentals: From Gutenberg to Google  v1Web Typography Fundamentals: From Gutenberg to Google  v1
Web Typography Fundamentals: From Gutenberg to Google v1
 
A crash course in typography
A crash course in typographyA crash course in typography
A crash course in typography
 
The Power of Typography
The Power of TypographyThe Power of Typography
The Power of Typography
 
Web Typography
Web TypographyWeb Typography
Web Typography
 
Webfonts: Demystified
Webfonts: DemystifiedWebfonts: Demystified
Webfonts: Demystified
 
Web Typography: A (Brief) Review
Web Typography: A (Brief) ReviewWeb Typography: A (Brief) Review
Web Typography: A (Brief) Review
 
Beautiful Layouts Through Beautiful Type
Beautiful Layouts Through Beautiful TypeBeautiful Layouts Through Beautiful Type
Beautiful Layouts Through Beautiful Type
 
Modernist Typography and the Swiss grid - Carlo Giannasca
Modernist Typography and the Swiss grid - Carlo GiannascaModernist Typography and the Swiss grid - Carlo Giannasca
Modernist Typography and the Swiss grid - Carlo Giannasca
 
Typography Essentials: Part 1
Typography Essentials: Part 1Typography Essentials: Part 1
Typography Essentials: Part 1
 
Responsive Design Heaven & Hell
Responsive Design Heaven & HellResponsive Design Heaven & Hell
Responsive Design Heaven & Hell
 
Responsive Design
Responsive Design Responsive Design
Responsive Design
 
Responsive Color
Responsive ColorResponsive Color
Responsive Color
 
Responsive Design Workshop
Responsive Design WorkshopResponsive Design Workshop
Responsive Design Workshop
 
Creating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly FormsCreating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly Forms
 
BIFM Presentation 261115 (2)
BIFM Presentation 261115 (2)BIFM Presentation 261115 (2)
BIFM Presentation 261115 (2)
 
XML Schema Difference Analysis
XML Schema Difference AnalysisXML Schema Difference Analysis
XML Schema Difference Analysis
 
The power of information - easy read version
The power of information - easy read versionThe power of information - easy read version
The power of information - easy read version
 
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...
How to Change Permissions and Install a Module in Drupal - Musings of a Drupa...
 
Understanding Java byte code and the class file format
Understanding Java byte code and the class file formatUnderstanding Java byte code and the class file format
Understanding Java byte code and the class file format
 

Semelhante a Responsive Typography II

How do speed up web pages? CSS & HTML Tricks
How do speed up web pages? CSS & HTML TricksHow do speed up web pages? CSS & HTML Tricks
How do speed up web pages? CSS & HTML TricksCompare Infobase Limited
 
Code For Every Librarian
Code For Every LibrarianCode For Every Librarian
Code For Every Librariancmawolfe
 
basic knowledge abot html
basic knowledge abot htmlbasic knowledge abot html
basic knowledge abot htmlAnkit Dubey
 
Perl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim PerlchinaPerl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim Perlchinaguestcf9240
 
Php Simple Xml
Php Simple XmlPhp Simple Xml
Php Simple Xmlmussawir20
 
Formating Text Using CSS
Formating Text Using CSSFormating Text Using CSS
Formating Text Using CSSMark Carter
 
Doctype html publi
Doctype html publiDoctype html publi
Doctype html publiEddy_TKJ
 
SmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutSmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutRachel Andrew
 
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...Andrea Telatin
 
Perl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim PerlchinaPerl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim PerlchinaLin Yo-An
 
Perl.Hacks.On.Vim
Perl.Hacks.On.VimPerl.Hacks.On.Vim
Perl.Hacks.On.VimLin Yo-An
 
Unlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutUnlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutRachel Andrew
 
All Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutAll Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutRachel Andrew
 

Semelhante a Responsive Typography II (20)

How do speed up web pages? CSS & HTML Tricks
How do speed up web pages? CSS & HTML TricksHow do speed up web pages? CSS & HTML Tricks
How do speed up web pages? CSS & HTML Tricks
 
Bioinformatica p4-io
Bioinformatica p4-ioBioinformatica p4-io
Bioinformatica p4-io
 
Code For Every Librarian
Code For Every LibrarianCode For Every Librarian
Code For Every Librarian
 
Qt Translations
Qt TranslationsQt Translations
Qt Translations
 
basic knowledge abot html
basic knowledge abot htmlbasic knowledge abot html
basic knowledge abot html
 
Perl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim PerlchinaPerl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim Perlchina
 
Perl Presentation
Perl PresentationPerl Presentation
Perl Presentation
 
Php Simple Xml
Php Simple XmlPhp Simple Xml
Php Simple Xml
 
Formating Text Using CSS
Formating Text Using CSSFormating Text Using CSS
Formating Text Using CSS
 
Css dimension
Css   dimensionCss   dimension
Css dimension
 
Doctype html publi
Doctype html publiDoctype html publi
Doctype html publi
 
SmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid LayoutSmashingConf SF: Unlocking the Power of CSS Grid Layout
SmashingConf SF: Unlocking the Power of CSS Grid Layout
 
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...
Bioinformatica: Esercizi su Perl, espressioni regolari e altre amenità (BMR G...
 
Odp
OdpOdp
Odp
 
Perl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim PerlchinaPerl.Hacks.On.Vim Perlchina
Perl.Hacks.On.Vim Perlchina
 
Perl.Hacks.On.Vim
Perl.Hacks.On.VimPerl.Hacks.On.Vim
Perl.Hacks.On.Vim
 
Lecture1 B Frames&Forms
Lecture1 B  Frames&FormsLecture1 B  Frames&Forms
Lecture1 B Frames&Forms
 
Unlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid LayoutUnlocking the Power of CSS Grid Layout
Unlocking the Power of CSS Grid Layout
 
All Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid LayoutAll Day Hey! Unlocking The Power of CSS Grid Layout
All Day Hey! Unlocking The Power of CSS Grid Layout
 
What the @font-face
What the @font-faceWhat the @font-face
What the @font-face
 

Mais de Clarissa Peterson

Designing for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User ExperienceDesigning for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User ExperienceClarissa Peterson
 
Responsive Design Essentials
Responsive Design EssentialsResponsive Design Essentials
Responsive Design EssentialsClarissa Peterson
 
Content Strategy for Responsive Websites
Content Strategy for Responsive WebsitesContent Strategy for Responsive Websites
Content Strategy for Responsive WebsitesClarissa Peterson
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & ResourcesClarissa Peterson
 
Optimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignClarissa Peterson
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Clarissa Peterson
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
 

Mais de Clarissa Peterson (10)

Alt Text Is Your Superpower
Alt Text Is Your SuperpowerAlt Text Is Your Superpower
Alt Text Is Your Superpower
 
Designing for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User ExperienceDesigning for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User Experience
 
Making the Web Easy
Making the Web EasyMaking the Web Easy
Making the Web Easy
 
Responsive Design Essentials
Responsive Design EssentialsResponsive Design Essentials
Responsive Design Essentials
 
Content Strategy for Responsive Websites
Content Strategy for Responsive WebsitesContent Strategy for Responsive Websites
Content Strategy for Responsive Websites
 
UX & Responsive Design
UX & Responsive DesignUX & Responsive Design
UX & Responsive Design
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Optimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web Design
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 

Último

simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfLucyBonelli
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptJIT KUMAR GUPTA
 
Pearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxPearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxDanielTamiru4
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道yrolcks
 
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Associazione Digital Days
 
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书zdzoqco
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbpreetirao780
 
10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designersPixeldarts
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyChristopher Totten
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxKevinYaelJimnezSanti
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...Rishabh Aryan
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssNadaMohammed714321
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Rndexperts
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks CharlottePulte
 
Karim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppKarim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppNadaMohammed714321
 
Iconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic global solution
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfneelspinoy
 
Color Theory Explained for Noobs- Think360 Studio
Color Theory Explained for Noobs- Think360 StudioColor Theory Explained for Noobs- Think360 Studio
Color Theory Explained for Noobs- Think360 StudioThink360 Studio
 
10 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 202410 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 2024digital learning point
 
General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxmarckustrevion
 

Último (20)

simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
 
Pearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptxPearl Disrtrict urban analyusis study pptx
Pearl Disrtrict urban analyusis study pptx
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
 
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
 
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
办理卡尔顿大学毕业证成绩单|购买加拿大文凭证书
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbb
 
10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenology
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptx
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssss
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks
 
Karim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppKarim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 ppppppppppppppp
 
Iconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing servicesIconic Global Solution - web design, Digital Marketing services
Iconic Global Solution - web design, Digital Marketing services
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdf
 
Color Theory Explained for Noobs- Think360 Studio
Color Theory Explained for Noobs- Think360 StudioColor Theory Explained for Noobs- Think360 Studio
Color Theory Explained for Noobs- Think360 Studio
 
10 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 202410 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 2024
 
General Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptxGeneral Knowledge Quiz Game C++ CODE.pptx
General Knowledge Quiz Game C++ CODE.pptx
 

Responsive Typography II