SlideShare une entreprise Scribd logo
1  sur  182
Télécharger pour lire hors ligne
WHY?
STATISTICS
Source: Litmus https://litmus.com/blog/mobile-opens-hit-51-percent-android-claims-number-3-spot
Source: https://litmus.com/blog/mobile-opens-hit-44-and-outlook-com-takes-a-dive
Source: https://litmus.com/blog/mobile-opens-hit-record-high-of-47?utm_campaign=aug2013news&utm_source=newsletter&utm_medium=email
Source: Litmus https://litmus.com/blog/mobile-opens-hit-51-percent-android-claims-number-3-spot
If you’re not designing for mobile,
you’re ignoring half your audience.
Source: E-Dialog http://www.e-dialog.com/pdf/smartguides/edialog_responsive_email_design_guide_2013.pdf
Source: https://litmus.com/blog/saving-email-for-later-opens-across-devices-environments
pinch + zoom

≠
mobile optimized
DESIGN
Step 1

Scalable graphics
Step 2

Increase font size
TS;DR

(too small; didn’t read)
scaled images +
readable type

=
single column responsive
Limited time? Single column
Step 3

Manage the flow of content
a
Step 4

Design for mobile viewports
Not all mobile clients
support @media queries
Not all mobile clients scale to fit
Design for the upper left “mobile fold”
Step 5 Create large touch targets
Step 6

Communicate structure & hierarchy
Step 7

Embrace brevity
What is this and why do I care?
Step 8 Design your microcontent
Carefully choose the From: name
Shorten and front-load subject lines
CODING BASICS
HTML emails are not webpages
Deprecated code
Variable support for HTML + CSS
Table-based layouts
<table align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Lorem Ipsum</td>
</tr>
</table>
Stackable tables
<table border="0" cellpadding="0" cellspacing="0" style="width:600px;">
<tr>
<td style="width:300px;">Lorem Ipsum</td>
<td style="width:300px;">Lorem Ipsum</td>
</tr>
</table>

<table border="0" cellpadding="0" cellspacing="0" style="width:600px;">
<tr>
<td style="width:150px;">Lorem Ipsum</td>
<td style="width:150px;">Lorem Ipsum</td>
<td style="width:150px;">Lorem Ipsum</td>
<td style="width:150px;">Lorem Ipsum</td>
</tr>
</table>

<table border="0" cellpadding="0" cellspacing="0" style="width:600px;">
<tr>
<td style="width:200px;">Lorem Ipsum</td>
<td style="width:200px;">Lorem Ipsum</td>
<td style="width:200px;">Lorem Ipsum</td>
</tr>
</table>
a
Nested tables
<!-- :::::::::::::::::::::::::
STACKABLE TABLE
:::::::::::::::::::::::::: -->
<table border="0" cellpadding="0" cellspacing="0" class="stacking-table">
<tr>
<td class="gutter">&nbsp;</td>
<td class="center">
<!-- :::::::::::::::::::::::::
NESTED TABLE
:::::::::::::::::::::::::: -->
<table border="0" cellpadding="0" cellspacing="0" class="two-column">
<tr>
<td class="column">...</td>
<td class="column">...</td>
</tr>
</table>
</td>
<td class="gutter">&nbsp;</td>
</tr>
</table>
a
a
Avoid colspan and rowspan attributes
<table border="0" cellpadding="0" cellspacing="0" style="width:600px;">
<tr>
<td colspan="3" style="width:600px;">You will regret using this colspan!!!</td>
</tr>
<tr>
<td style="width:200px;">Lorem Ipsum</td>
<td style="width:200px;">Lorem Ipsum</td>
<td style="width:200px;">Lorem Ipsum</td>
</tr>
</table>
Define <table> + <td> widths
<!-- Fixed widths -->
<table border="0" cellpadding="0" cellspacing="0" style="width:600px;">
<tr>
<td style="width:300px;">Lorem Ipsum</td>
<td style="width:300px;">Lorem Ipsum</td>
</tr>
</table>

<!-- Fluid widths -->
<table border="0" cellpadding="0" cellspacing="0" style="width:100%;">
<tr>
<td style="width:50%;">...</td>
<td style="width:50%;">...</td>
</tr>
</table>
Doctype
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
HTML validators
Define image width + height
<img src="..." width="150" height="100" />
HTML entities
<!-- Symbols and Latin use entity names -->
&copy; &bull; &mdash; &eacute; &ntilde;
<!-- Non-Latin use entity numbers -->
&#28608; &#20809; &#36889;
Use CSS
.h1
.h2
.h3
.h4

{
{
{
{

font-size:32px;
font-size:26px;
font-size:21px;
font-size:18px;

line-height:115%;
line-height:130%;
line-height:150%;
line-height:150%;

}
}
}
}

.column-full { width:540px; }
.column-half { width:260px; }
.column-third { width:170px; }
.column-quarter { width:130px; }
.spacer-xl
.spacer-lg
.spacer-md
.spacer-sm
.spacer-xs

{
{
{
{
{

height:50px; line-height:50px; }
height:40px; line-height:40px; }
height:30px; line-height:30px; }
height:20px; line-height:20px; }
font-size:10px; height:10px; line-height:10px; }

.border { border-bottom:1px solid #aaaaaa; }
.border-thick { border-bottom:5px solid #cccccc; }
But inline it
Supported CSS
/* Font styles */
.text-style {
font-family:"Lucida Grande", "Lucida Sans Unicode", "Corbel", "Tahoma", sans-serif;
font-size:14px;
font-style:italic;
font-weight:bold;
line-height:1.2em;
text-align:left;
text-decoration:underline;
}
Supported CSS
/* Color styles */
.color-style {
background-color:#F0235B;
border:1px solid #999999;
color:#FFFFFF;
}
Unsupported CSS
/* Positioning */
.div-position {
float:left;
position:relative;
top:100px;
z-index:1;
}
Unsupported CSS
/* Margins */
.h1 { margin:0 0 24px; }
.p { margin:0 0 10px; }
Avoid elements with default margins
<!-- BAD -->
<h1>Headers and paragraphs have default margin styles</h1>
<p>Not all email clients will let you override or zero them out.</p>
Font styles on block elements
<div class=”h1”>H1 Header</div>
<div class=”p”>Paragraph...</div>
<table>
<tr>
<td class=”h1”>H1 Header</td>
<td class=”p”>Paragraph...</td>
</tr>
</table>
Vertical spacers
/* Vertical spacers for text spacing */
.spacer-xl { height:50px; line-height:50px; }
.spacer-lg { height:40px; line-height:40px; }
.spacer-md { height:30px; line-height:30px; }
.spacer-sm { height:20px; line-height:20px; }
.spacer-xs { font-size:10px; height:10px; line-height:10px; }
Combine for flawless text layout
<div class=”h1”>H1 Header</div>
<div class=”spacer-lg”>&nbsp;</div>
<div class=”p”>Paragraph...</div>
<table>
<tr>
<td class=”h1”>H1 Header</td>
<td class=”spacer-sm”>&nbsp;</td>
<td class=”p”>Paragraph...</td>
</tr>
</table>
Partially supported CSS
/* Padding */
img { padding:5px; }
td { padding:10px; }
/* Not fully supported on table, div or p elements */
Partially supported CSS
/* Background images */
td { background-image:url("http://..."); }
Background image hack
<td background="http://.../background-image.gif" bgcolor="#f6f6f6" width="200" height="200" valign="top">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:200px;height:200px;">
<v:fill type="tile" src="http://.../background-image.gif" color="#f6f6f6" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<div>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
Partially supported CSS
/* HTML buttons */
a { display:block; }
Button hack
<div>
<!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://"
style="height:40px;v-text-anchor:middle;width:200px;" arcsize="10%" strokecolor="#1e3650" fill="t">
<v:fill type="tile" src="http://i.imgur.com/0xPEf.gif" color="#556270" />
<w:anchorlock/>
<center style="color:#ffffff;font-family:sans-serif;font-size:13px;font-weight:bold;">Show me the button!</
center>
</v:roundrect>
<![endif]-->
<a href="http://"
style="background-color:#556270;background-image:url(http://i.imgur.com/0xPEf.gif);border:1px solid #1e3650;borderradius:4px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:bold;line-height:
40px;text-align:center;text-decoration:none;width:200px;-webkit-text-size-adjust:none;mso-hide:all;">Show me the button!</
a>
</div>
Guides to CSS Support
Microsoft Outlook 2007, 2010, 2013...
...Your Worst Enemy
Conditional statements for Outlook
<!--[if gte mso 9]>
<style type="text/css">
/* Outlook specific CSS here */
</style>
<![endif]-->
RESPONSIVE
Fluid grids
Fluid media
Media queries
Source: http://moddify.com/is-android-fragmentation-for-real/
Source: http://punchcut.com/perspectives/expanding-universe-toolset-managing-screen-resolutions
Source: http://devicelab.fi/
Source:
Source: http://emailclientmarketshare.com/
Source: http://stylecampaign.com/blog/2012/10/responsive-email-support/
Source: http://www.campaignmonitor.com/guides/mobile/#mobile-support
@media
@media only screen and (max-width: 599px)
{
...
}
Breakpoints
@media only screen and (max-width: 599px)
{
...
}

@media only screen and (max-width: 480px)
{
...
}
Viewport <meta>
<meta name="viewport" content="width=device-width">
Attribute selectors
<head>
<style type="text/css">
/* Fixed Styles */
.container { ... }
.column { ... }
.gutter { ... }
/* Responsive styles */
@media only screen and (max-width: 599px)
{
[id=container] {
...
}
[class=preheader] {
...
}
span[class=highlight] {
...
}
}
</style>
</head>
Percentage widths
.container { width:600px; }
.column { width:560px; }
.gutter { width:20px; }
@media only screen and (max-device-width: 599px)
{
[class=container] {
width:100% !important;
}
[class=column] {
width:92% !important;
}
[class=gutter] {
width:4% !important;
}
}
!important declarations
<!-- Inlined for maximum compatibility with desktop/webmail clients -->
.container { width:600px; }
.column { width:560px; }
.gutter { width:20px; }

<!-- Not inlined, thus they need !important for CSS precedence -->
@media only screen and (max-device-width: 599px)
{
[class=container] {
width:100% !important;
}
[class=column] {
width:92% !important;
}
[class=gutter] {
width:4% !important;
}
}
Fluid images
[class=column-half] img {
width:100% !important;
height:auto !important;
max-width:300px !important;
}
Multi-column layouts
<!-- :::::::::::::::::::::::::
STACKABLE TABLE
:::::::::::::::::::::::::: -->
<table border="0" cellpadding="0" cellspacing="0" class="stackable-table">
<tr>
<td class="gutter">&nbsp;</td>
<td class="center">
<!-- :::::::::::::::::::::::::::::
NESTED 2-COLUMN TABLE
:::::::::::::::::::::::::::::: -->
<table border="0" cellpadding="0" cellspacing="0" class="two-column">
<tr>
<td class="column">...</td>
<td class="column">...</td>
</tr>
</table>
</td>
<td class="gutter">&nbsp;</td>
</tr>
</table>
Multi-column CSS
.two-column { width:600px; }
.two-column .column { width:300px; }

@media only screen and (max-width: 599px)
{
[class=two-column] {
width:100% !important;
}
[class=two-column] [class=column] {
width:100% !important;
display:block !important;
}
}
a
Floated tables require Outlook hack
<!-- :::::::::::::::::::::::::
OUTER TABLE
:::::::::::::::::::::::::: -->
<table border="0" cellpadding="0" cellspacing="0" class="full-column">
<tr>
<td class="gutter">&nbsp;</td>
<td class="center">
<table class="outlook-container-FIX"><tr><td>
<!-- :::::::::::::::::::::::::::::
INNER FLOATED TABLE
:::::::::::::::::::::::::::::: -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="column-half">
<tr>
<td>
<div class="outlook-spacing-FIX">
...Content goes here
</div>
</td>
</tr>
<tr>
<td>
...
</td>
</tr>
</table>
<table class="outlook-container-FIX"><tr><td>
<!-- :::::::::::::::::::::::::::::
INNER FLOATED TABLE
:::::::::::::::::::::::::::::: -->
<table align="left" border="0" cellpadding="0" cellspacing="0" class="column-half">
<tr>
<td>
<div class="outlook-spacing-FIX">
...Content goes here
</div>
CSS for Outlook hack
.outlook-container-FIX {
width:100%;
}
.outlook-spacing-FIX {
mso-table-lspace:0;
mso-table-rspace:0;
}
.half-column { border:1px solid #FBFBF9; }
Buggy!
Quoi?????
Resources
Source: https://github.com/ladyheatherly/responsive-email/blob/master/responsive-email-template.html
Source: http://briangraves.github.io/ResponsiveEmailPatterns/
Source:
Source: https://github.com/mailchimp/Email-Blueprints
Thank you!
Responsive Email Design and Development

Contenu connexe

Tendances

Microformats at Web 2.0 Expo April 2007
Microformats at Web 2.0 Expo April 2007Microformats at Web 2.0 Expo April 2007
Microformats at Web 2.0 Expo April 2007John Allsopp
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013SEOM
 
Httpsmaindroneyuk.blogspot.com
Httpsmaindroneyuk.blogspot.comHttpsmaindroneyuk.blogspot.com
Httpsmaindroneyuk.blogspot.comjangunglahokey
 
10 Things Webdesigners tend to do Wrong in SEO - SMX 2014
10 Things Webdesigners tend to do Wrong in SEO  - SMX 201410 Things Webdesigners tend to do Wrong in SEO  - SMX 2014
10 Things Webdesigners tend to do Wrong in SEO - SMX 2014Timon Hartung
 
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)nous sommes vivants
 
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...Anthony Williams
 
Accelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPAccelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPJono Alderson
 
ACSS: Rethinking CSS Best Practices
ACSS: Rethinking CSS Best PracticesACSS: Rethinking CSS Best Practices
ACSS: Rethinking CSS Best PracticesRenato Iwashima
 
Web Technology Lab files with practical
Web Technology Lab  files with practicalWeb Technology Lab  files with practical
Web Technology Lab files with practicalNitesh Dubey
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013zubeditufail
 
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014Technical SEO: Crawl Space Management - SEOZone Istanbul 2014
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014Bastian Grimm
 
How I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess fileHow I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess fileRoxana Stingu
 

Tendances (18)

Microformats at Web 2.0 Expo April 2007
Microformats at Web 2.0 Expo April 2007Microformats at Web 2.0 Expo April 2007
Microformats at Web 2.0 Expo April 2007
 
Seo cheat sheet 2013
Seo cheat sheet 2013Seo cheat sheet 2013
Seo cheat sheet 2013
 
Httpsmaindroneyuk.blogspot.com
Httpsmaindroneyuk.blogspot.comHttpsmaindroneyuk.blogspot.com
Httpsmaindroneyuk.blogspot.com
 
Metodologia de-las-5-s
Metodologia de-las-5-sMetodologia de-las-5-s
Metodologia de-las-5-s
 
shoubox script
shoubox scriptshoubox script
shoubox script
 
Toolbox for Freeapps
Toolbox for FreeappsToolbox for Freeapps
Toolbox for Freeapps
 
10 Things Webdesigners tend to do Wrong in SEO - SMX 2014
10 Things Webdesigners tend to do Wrong in SEO  - SMX 201410 Things Webdesigners tend to do Wrong in SEO  - SMX 2014
10 Things Webdesigners tend to do Wrong in SEO - SMX 2014
 
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)
courts circuits : l'innovation dans le luxe 'mon idendité de luxe" (partie 3)
 
SES San Jose 2008
SES San Jose 2008SES San Jose 2008
SES San Jose 2008
 
Ocul emergency-presentation
Ocul emergency-presentationOcul emergency-presentation
Ocul emergency-presentation
 
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...
The Multipack Presents: "Wrestling With Asp.Net And Web Standards" by Anthony...
 
Accelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMPAccelerated Mobile - Beyond AMP
Accelerated Mobile - Beyond AMP
 
ACSS: Rethinking CSS Best Practices
ACSS: Rethinking CSS Best PracticesACSS: Rethinking CSS Best Practices
ACSS: Rethinking CSS Best Practices
 
Web Technology Lab files with practical
Web Technology Lab  files with practicalWeb Technology Lab  files with practical
Web Technology Lab files with practical
 
Seo cheat sheet_2-2013
Seo cheat sheet_2-2013Seo cheat sheet_2-2013
Seo cheat sheet_2-2013
 
Guia de-estudio-2
Guia de-estudio-2Guia de-estudio-2
Guia de-estudio-2
 
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014Technical SEO: Crawl Space Management - SEOZone Istanbul 2014
Technical SEO: Crawl Space Management - SEOZone Istanbul 2014
 
How I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess fileHow I learned to stop worrying and love the .htaccess file
How I learned to stop worrying and love the .htaccess file
 

Similaire à Responsive Email Design and Development

The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopbetabeers
 
Your Presentation Name Here
Your Presentation Name HereYour Presentation Name Here
Your Presentation Name HereFreedSoftwares
 
Module 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel DownsModule 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel DownsDaniel Downs
 
Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Patrick Lauke
 
Web Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at GoogleWeb Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at GoogleEstelle Weyl
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Wahyu Putra
 
Class 4 handout two column layout w mobile web design
Class 4 handout two column layout w mobile web designClass 4 handout two column layout w mobile web design
Class 4 handout two column layout w mobile web designErin M. Kidwell
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web DesignChristopher Schmitt
 
FITC Spotlight HTML5 - The state of the web
FITC Spotlight HTML5 - The state of the webFITC Spotlight HTML5 - The state of the web
FITC Spotlight HTML5 - The state of the webFrédéric Harper
 
Interactive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentInteractive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentMichael Posso
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Patrick Lauke
 
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web DesignChristopher Schmitt
 

Similaire à Responsive Email Design and Development (20)

The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktop
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
Responsive design
Responsive designResponsive design
Responsive design
 
Your Presentation Name Here
Your Presentation Name HereYour Presentation Name Here
Your Presentation Name Here
 
Module 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel DownsModule 4 Minuteman Lexington Web Design Daniel Downs
Module 4 Minuteman Lexington Web Design Daniel Downs
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011
 
Web Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at GoogleWeb Development for Mobile: GTUG Talk at Google
Web Development for Mobile: GTUG Talk at Google
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
HTML5
HTML5HTML5
HTML5
 
Class 4 handout two column layout w mobile web design
Class 4 handout two column layout w mobile web designClass 4 handout two column layout w mobile web design
Class 4 handout two column layout w mobile web design
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
FITC Spotlight HTML5 - The state of the web
FITC Spotlight HTML5 - The state of the webFITC Spotlight HTML5 - The state of the web
FITC Spotlight HTML5 - The state of the web
 
Intro to JavaScript
Intro to JavaScriptIntro to JavaScript
Intro to JavaScript
 
Interactive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email developmentInteractive Responsive Emails - Creative ways to innovate in email development
Interactive Responsive Emails - Creative ways to innovate in email development
 
The Devil and HTML5
The Devil and HTML5The Devil and HTML5
The Devil and HTML5
 
Create a landing page
Create a landing pageCreate a landing page
Create a landing page
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
 
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design[HEWEBAR 2012] Adaptive Images in Responsive Web Design
[HEWEBAR 2012] Adaptive Images in Responsive Web Design
 

Dernier

General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinGeneral Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinSamar Hossam ElDin Ahmed
 
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
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxKevinYaelJimnezSanti
 
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementSharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementMd. Shariful Hoque
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine CharlottePulte
 
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
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssNadaMohammed714321
 
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - MorgenboosterAI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster1508 A/S
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道yrolcks
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfLucyBonelli
 
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
 
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
 
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxNitish292041
 
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
 
CAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfCAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfAlasAlthaher
 
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisFW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisPeclers Paris
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppNadaMohammed714321
 
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
 
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
 

Dernier (20)

General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinGeneral Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
 
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
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptx
 
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementSharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine
 
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...
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssss
 
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - MorgenboosterAI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
 
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
 
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
 
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
 
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
 
CAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfCAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdf
 
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisFW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 ppppppppppppppp
 
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
 
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
 

Responsive Email Design and Development