SlideShare a Scribd company logo
1 of 61
Download to read offline
FRONT-END 

DEVELOPMENT FOR

BACK-END DEVELOPERS
Bertine Buchan

@bertine
Gage Marketing
Amy Berg
@pork_chop
Minnesota Public Radio
(AKA Front-End Dev 101)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
WHAT IS A FRONT-END DEV?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
WE ARE FRONT-END DEVS.
• Build websites
• HTML email support
• QA (browser testing)
• UI/design review
• Knowledge sharing
• Estimating work (time & resources)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• HTML
• CSS
• JavaScript
• Project
Requirements
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
HTML
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Semantic HTML
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
HTML5 Shim
https://code.google.com/p/html5shim/
<!--[if lt IE 9]>!
<script src="html5shiv.js"></script>!
<![endif]-->
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Conditional Comments
http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
<!--[if lt IE 9]> <html class="ltie9"> <![endif]-->!
<!--[if IE 9]><!--> <html> <!--<![endif]-->!
!
<style>!
! html body { !
! ! background-color: blue;!
! }!
! html.ltie9 body {!
! ! background-color: green;!
! }!
</style>
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
When to use <table>
Tabular Data, HTML emails
When not to use <table>
Everywhere else!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
For related content layout, 

try

<ol>, <ul>, or <dl>
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JUST MAKE IT
SEMANTIC.
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
OTHER HTML
QUESTIONS?
To learn more, start here: http://html5please.com/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
CSS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Set base styles for your website with
Normalize.css

(or reset.css)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
.rating p {!
text-align: center;!
padding: 0 20px 10px 20px;!
font-size: 13px;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}!
!
.rating p.number {!
text-align: center;!
padding: 10px 20px 0 20px;!
font-size: 18px;!
font-weight: bold;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}
Remember the ‘C’ in CSS…
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
.rating p {!
text-align: center;!
padding: 0 20px 10px 20px;!
font-size: 13px;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}!
!
.rating p.number {!
text-align: center;!
padding: 10px 20px 0 20px;!
font-size: 18px;!
font-weight: bold;!
font-family: "Gill Sans","Gill Sans MT",Calibri,sans-serif;!
margin-bottom: 0;!
line-height: 20px;!
}
Cascading Stylesheets.
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Common Issues
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
display
inline, inline-block, block, none
http://css-tricks.com/almanac/properties/d/display/
Photo from Liz Andrade, @lizandrade, http://www.flickr.com/photos/cmdshiftdesign/5910326877/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
* { box-sizing: border-box }
http://www.paulirish.com/2012/box-sizing-border-box-ftw/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Positioning
static, relative, absolute, fixed
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/7x85K/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/7x85K/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Clearing Floats
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/W5u2Z/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Maybe you’re used to…
!
<div class="floatedbox left" style="background:
#7091b6;"><p>This is Box #1, floated left. It is
taller than Box #3.</p></div>!
!
<div class="floatedbox right" style="background:
#9cb2cc;"><p>This is Box #2, floated right.</p></div>!
!
<div style=“clear: both”></div> !
!
<div style="background: #c6d2e0;"><p>This is Box #3.
It is not floated, so it collapses into the two
previous floated boxes.</p></div>!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
http://jsfiddle.net/Gz67L/
There’s a better way!
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Shortcuts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
padding-top: 25px; !
padding-right: 0;!
padding-bottom: 0;!
padding-left: 0;
padding: 25px 0 0 0;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
padding: 0 0 0 0;
padding: 0;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Becomes…
border-bottom-width: 1px;!
border-bottom-style: solid;!
border-bottom-color: #333333;
border-bottom: 0 solid #333333;
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
backbone
grid960
bootstrap
roll your own
CSS Frameworks
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
OOCSS
https://github.com/stubbornella/oocss/wiki/faq
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
SASS/LESS
Preprocessor
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Shims
Polyfills
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
jquery
angular.js
node.js
Frameworks
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
JSON templates
angular.js
mustache.js
handlebars.js
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
MEETING

PROJECT
REQUIREMENTS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Are these required:
• Does the site need to be pixel perfect with design comp? 

(consider graceful degradation)
• Which browsers are you supporting?
• Do you need non-JS fallback?
• Responsive?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• In-browser inspectors and Firebug
• Built-in dev toolbars & responsive tools
• W3c validator
• CSS lint, JSON lint
• Visual Studio Web Essentials extension
• caniuse.com
Tools/workflow
THANK YOU!
Get our slides online: http://bit.ly/ThatConf_FEDev
(We’ll tweet this link, too!)
Bertine Buchan

@bertine
Amy Berg
@pork_chop
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
We’ve got more time!

Here are some bonus
TIPS
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
• Mouse/Hover-over states (CSS/JS)
• What happens when you click that button? (UI/site flow)
• Modals vs. Alerts vs. Inline dynamic messaging
Things to Consider
(these might not be part of your design comp)
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Sprites
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Image Replacement
http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/
http://jsfiddle.net/PEL7B/
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Where does the text go?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Hosted for you:
• Google Fonts
• TypeKit
!
Make your own:
• FontSquirrel
Web Fonts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Icon Fonts
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
Unwanted space between 

inline-block elements?
Bertine Buchan

@bertine
Amy Berg
@pork_chop@ThatConference #ThatConference #FEDev
The most simple fix.
For other solutions: 

http://css-tricks.com/fighting-the-space-between-inline-block-elements/
http://jsfiddle.net/FgqPb/
THANK YOU AGAIN!
Bertine Buchan

@bertine
Amy Berg
@pork_chop

More Related Content

What's hot

Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...Stoney deGeyter
 
Webinar: How To Use Web Analytics To Improve Website Conversions
Webinar: How To Use Web Analytics To Improve Website ConversionsWebinar: How To Use Web Analytics To Improve Website Conversions
Webinar: How To Use Web Analytics To Improve Website ConversionsSEO.com
 
Sunday Business Post SEO Masterclass - John RIng
Sunday Business Post SEO Masterclass �- John RIngSunday Business Post SEO Masterclass �- John RIng
Sunday Business Post SEO Masterclass - John RIngTinderPoint
 
BrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
BrightonSEO 2018 - Practical Insights into Winning Epic Featured SnippetsBrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
BrightonSEO 2018 - Practical Insights into Winning Epic Featured SnippetsIzzi Smith
 
ID2013 - Optimizing Your Website’s Architecture For SEO
ID2013 - Optimizing Your Website’s Architecture For SEOID2013 - Optimizing Your Website’s Architecture For SEO
ID2013 - Optimizing Your Website’s Architecture For SEOJohn Doherty
 
Distance from Perfect: Marketing w/ the Human Algorithm - DDW
Distance from Perfect: Marketing w/ the Human Algorithm - DDWDistance from Perfect: Marketing w/ the Human Algorithm - DDW
Distance from Perfect: Marketing w/ the Human Algorithm - DDWIan Lurie
 
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...Branded3
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsDavid Sottimano
 
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization ConflictsDawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization ConflictsDawn Anderson MSc DigM
 
Getting found - Search Engine Optimizaton
Getting found - Search Engine OptimizatonGetting found - Search Engine Optimizaton
Getting found - Search Engine Optimizatonnetc2012
 
How to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
How to Make Your WordPress Site Search Engine Friendly & Web Marketing ReadyHow to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
How to Make Your WordPress Site Search Engine Friendly & Web Marketing ReadyStoney deGeyter
 
The Future Of Technical SEO Isn't Your Website
The Future Of Technical SEO Isn't Your WebsiteThe Future Of Technical SEO Isn't Your Website
The Future Of Technical SEO Isn't Your WebsiteKaizen
 
Word campgr stop selling seo namtrok
Word campgr stop selling seo namtrokWord campgr stop selling seo namtrok
Word campgr stop selling seo namtrokPaul Kortman
 
Event Promotion and SEO
Event Promotion and SEOEvent Promotion and SEO
Event Promotion and SEOGeorge Freitag
 
3 Ways You Can Give and Get Good Design Feedback
3 Ways You Can Give and Get Good Design Feedback3 Ways You Can Give and Get Good Design Feedback
3 Ways You Can Give and Get Good Design FeedbackZURB
 
Search Engine Optimisation
Search Engine OptimisationSearch Engine Optimisation
Search Engine OptimisationAndrew Armitage
 
How Marketers Can Work With Code
How Marketers Can Work With CodeHow Marketers Can Work With Code
How Marketers Can Work With CodeKaizen
 
The Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonThe Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonWe Are Marketing
 

What's hot (20)

Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
Stand Out From the Crowd: How to Make Your Website Amazingly, Incredibly, and...
 
Webinar: How To Use Web Analytics To Improve Website Conversions
Webinar: How To Use Web Analytics To Improve Website ConversionsWebinar: How To Use Web Analytics To Improve Website Conversions
Webinar: How To Use Web Analytics To Improve Website Conversions
 
Sunday Business Post SEO Masterclass - John RIng
Sunday Business Post SEO Masterclass �- John RIngSunday Business Post SEO Masterclass �- John RIng
Sunday Business Post SEO Masterclass - John RIng
 
BrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
BrightonSEO 2018 - Practical Insights into Winning Epic Featured SnippetsBrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
BrightonSEO 2018 - Practical Insights into Winning Epic Featured Snippets
 
ID2013 - Optimizing Your Website’s Architecture For SEO
ID2013 - Optimizing Your Website’s Architecture For SEOID2013 - Optimizing Your Website’s Architecture For SEO
ID2013 - Optimizing Your Website’s Architecture For SEO
 
Distance from Perfect: Marketing w/ the Human Algorithm - DDW
Distance from Perfect: Marketing w/ the Human Algorithm - DDWDistance from Perfect: Marketing w/ the Human Algorithm - DDW
Distance from Perfect: Marketing w/ the Human Algorithm - DDW
 
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
SearchLeeds 2017 - Mathew Court, SEO Consultant - Auto Trader - Mobile first ...
 
TechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOsTechSEO Boost - Apps script for SEOs
TechSEO Boost - Apps script for SEOs
 
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization ConflictsDawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
 
Getting found - Search Engine Optimizaton
Getting found - Search Engine OptimizatonGetting found - Search Engine Optimizaton
Getting found - Search Engine Optimizaton
 
How to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
How to Make Your WordPress Site Search Engine Friendly & Web Marketing ReadyHow to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
How to Make Your WordPress Site Search Engine Friendly & Web Marketing Ready
 
The Future Of Technical SEO Isn't Your Website
The Future Of Technical SEO Isn't Your WebsiteThe Future Of Technical SEO Isn't Your Website
The Future Of Technical SEO Isn't Your Website
 
Word campgr stop selling seo namtrok
Word campgr stop selling seo namtrokWord campgr stop selling seo namtrok
Word campgr stop selling seo namtrok
 
EBE 2019 - Optimizing for Search Bots
EBE 2019 - Optimizing for Search BotsEBE 2019 - Optimizing for Search Bots
EBE 2019 - Optimizing for Search Bots
 
Event Promotion and SEO
Event Promotion and SEOEvent Promotion and SEO
Event Promotion and SEO
 
BrightonSeo - ecommerce seo pitfalls by Dave Naylor
BrightonSeo - ecommerce seo pitfalls by Dave NaylorBrightonSeo - ecommerce seo pitfalls by Dave Naylor
BrightonSeo - ecommerce seo pitfalls by Dave Naylor
 
3 Ways You Can Give and Get Good Design Feedback
3 Ways You Can Give and Get Good Design Feedback3 Ways You Can Give and Get Good Design Feedback
3 Ways You Can Give and Get Good Design Feedback
 
Search Engine Optimisation
Search Engine OptimisationSearch Engine Optimisation
Search Engine Optimisation
 
How Marketers Can Work With Code
How Marketers Can Work With CodeHow Marketers Can Work With Code
How Marketers Can Work With Code
 
The Inbounder London - Jono Alderson
The Inbounder London - Jono AldersonThe Inbounder London - Jono Alderson
The Inbounder London - Jono Alderson
 

Viewers also liked

Programming basics
Programming basicsProgramming basics
Programming basicsmercerhall
 
Today's Trending Technologies 2014
Today's Trending Technologies 2014Today's Trending Technologies 2014
Today's Trending Technologies 2014Hazem Torab
 
Designing and developing mobile web applications with Mockup, Sencha Touch an...
Designing and developing mobile web applications with Mockup, Sencha Touch an...Designing and developing mobile web applications with Mockup, Sencha Touch an...
Designing and developing mobile web applications with Mockup, Sencha Touch an...Matteo Collina
 
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce LabsHow To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce LabsSauce Labs
 
Quantum Computers PART 1 & 2 by Prof Lili Saghafi
Quantum Computers  PART 1 & 2 by Prof Lili SaghafiQuantum Computers  PART 1 & 2 by Prof Lili Saghafi
Quantum Computers PART 1 & 2 by Prof Lili SaghafiProfessor Lili Saghafi
 

Viewers also liked (6)

Programming basics
Programming basicsProgramming basics
Programming basics
 
Back end[1] debdeep
Back end[1]  debdeepBack end[1]  debdeep
Back end[1] debdeep
 
Today's Trending Technologies 2014
Today's Trending Technologies 2014Today's Trending Technologies 2014
Today's Trending Technologies 2014
 
Designing and developing mobile web applications with Mockup, Sencha Touch an...
Designing and developing mobile web applications with Mockup, Sencha Touch an...Designing and developing mobile web applications with Mockup, Sencha Touch an...
Designing and developing mobile web applications with Mockup, Sencha Touch an...
 
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce LabsHow To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
How To Combine Back-End 
 & Front-End Testing with BlazeMeter & Sauce Labs
 
Quantum Computers PART 1 & 2 by Prof Lili Saghafi
Quantum Computers  PART 1 & 2 by Prof Lili SaghafiQuantum Computers  PART 1 & 2 by Prof Lili Saghafi
Quantum Computers PART 1 & 2 by Prof Lili Saghafi
 

Similar to Front-End Dev for Back-End Developers, That Conference 2014

MIMA Summit 2014: Front-End Development for Marketers
MIMA Summit 2014: Front-End Development for MarketersMIMA Summit 2014: Front-End Development for Marketers
MIMA Summit 2014: Front-End Development for MarketersAmy Dalrymple
 
Day projectcon real-world-scrum
Day projectcon real-world-scrumDay projectcon real-world-scrum
Day projectcon real-world-scrumProjectCon
 
Principles Of Web Design Workshop
Principles Of Web Design WorkshopPrinciples Of Web Design Workshop
Principles Of Web Design WorkshopGavin Elliott
 
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfCore Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfSophie Gibson
 
Continuous deployment of DNS records
Continuous deployment of DNS recordsContinuous deployment of DNS records
Continuous deployment of DNS recordsbeanieboi
 
How to Improve Your Website's Indexation - Sean Butcher Brighton SEO Present...
How to Improve Your Website's Indexation  - Sean Butcher Brighton SEO Present...How to Improve Your Website's Indexation  - Sean Butcher Brighton SEO Present...
How to Improve Your Website's Indexation - Sean Butcher Brighton SEO Present...Sean Butcher
 
So you think you know canonical tags - Sean Butcher Brighton SEO presentation
So you think you know canonical tags -  Sean Butcher Brighton SEO presentationSo you think you know canonical tags -  Sean Butcher Brighton SEO presentation
So you think you know canonical tags - Sean Butcher Brighton SEO presentationSean Butcher
 
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEORendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEOOnely
 
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...Managing filters and facets on your ecommerce website - Bristol SEO and Readi...
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...Sean Butcher
 
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...SearchLeeds
 
Content Strategists: Use SEO to achieve your content goals #ConfabEU
Content Strategists: Use SEO to achieve your content goals #ConfabEUContent Strategists: Use SEO to achieve your content goals #ConfabEU
Content Strategists: Use SEO to achieve your content goals #ConfabEUAleyda Solís
 
How to Perform SEO Audits for Maximized Efficiency & Value
How to Perform SEO Audits for Maximized Efficiency & ValueHow to Perform SEO Audits for Maximized Efficiency & Value
How to Perform SEO Audits for Maximized Efficiency & Valuealanbleiweiss
 
Stop Coding; Start Assembling Your Websites
Stop Coding; Start Assembling Your WebsitesStop Coding; Start Assembling Your Websites
Stop Coding; Start Assembling Your WebsitesAmit Kumar Singh
 
Advanced Copywriting for SEO
Advanced Copywriting for SEOAdvanced Copywriting for SEO
Advanced Copywriting for SEOReynaldo Villar
 
SEO for BRAVE
SEO for BRAVESEO for BRAVE
SEO for BRAVEJon Payne
 
Syed ifraajamal final-deck-live
Syed ifraajamal final-deck-liveSyed ifraajamal final-deck-live
Syed ifraajamal final-deck-livesemrush_webinars
 
Guest Posting Case Study: $200K Revenue (23.85% Increase)
Guest Posting Case Study: $200K Revenue (23.85% Increase)Guest Posting Case Study: $200K Revenue (23.85% Increase)
Guest Posting Case Study: $200K Revenue (23.85% Increase)Syed Irfan Ajmal
 
Wine & Web: Content Strategy for Lead Generation
Wine & Web: Content Strategy for Lead GenerationWine & Web: Content Strategy for Lead Generation
Wine & Web: Content Strategy for Lead GenerationOrbit Media Studios
 

Similar to Front-End Dev for Back-End Developers, That Conference 2014 (20)

MIMA Summit 2014: Front-End Development for Marketers
MIMA Summit 2014: Front-End Development for MarketersMIMA Summit 2014: Front-End Development for Marketers
MIMA Summit 2014: Front-End Development for Marketers
 
Day projectcon real-world-scrum
Day projectcon real-world-scrumDay projectcon real-world-scrum
Day projectcon real-world-scrum
 
Principles Of Web Design Workshop
Principles Of Web Design WorkshopPrinciples Of Web Design Workshop
Principles Of Web Design Workshop
 
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdfCore Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
Core Web Vitals Audit - Sophie Gibson - PDF - BrightonSEO.pdf
 
Continuous deployment of DNS records
Continuous deployment of DNS recordsContinuous deployment of DNS records
Continuous deployment of DNS records
 
How to Improve Your Website's Indexation - Sean Butcher Brighton SEO Present...
How to Improve Your Website's Indexation  - Sean Butcher Brighton SEO Present...How to Improve Your Website's Indexation  - Sean Butcher Brighton SEO Present...
How to Improve Your Website's Indexation - Sean Butcher Brighton SEO Present...
 
So you think you know canonical tags - Sean Butcher Brighton SEO presentation
So you think you know canonical tags -  Sean Butcher Brighton SEO presentationSo you think you know canonical tags -  Sean Butcher Brighton SEO presentation
So you think you know canonical tags - Sean Butcher Brighton SEO presentation
 
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEORendering SEO Manifesto - Why we need to go beyond JavaScript SEO
Rendering SEO Manifesto - Why we need to go beyond JavaScript SEO
 
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...Managing filters and facets on your ecommerce website - Bristol SEO and Readi...
Managing filters and facets on your ecommerce website - Bristol SEO and Readi...
 
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...
SearchLeeds 2019 - Matt Howells-Barby - Everything you need to know before sc...
 
Content Strategists: Use SEO to achieve your content goals #ConfabEU
Content Strategists: Use SEO to achieve your content goals #ConfabEUContent Strategists: Use SEO to achieve your content goals #ConfabEU
Content Strategists: Use SEO to achieve your content goals #ConfabEU
 
How to Perform SEO Audits for Maximized Efficiency & Value
How to Perform SEO Audits for Maximized Efficiency & ValueHow to Perform SEO Audits for Maximized Efficiency & Value
How to Perform SEO Audits for Maximized Efficiency & Value
 
Stop Coding; Start Assembling Your Websites
Stop Coding; Start Assembling Your WebsitesStop Coding; Start Assembling Your Websites
Stop Coding; Start Assembling Your Websites
 
Advanced Copywriting for SEO
Advanced Copywriting for SEOAdvanced Copywriting for SEO
Advanced Copywriting for SEO
 
Brave SEO January 2016
Brave SEO January 2016Brave SEO January 2016
Brave SEO January 2016
 
Brave SEO Jun-2015
Brave SEO Jun-2015Brave SEO Jun-2015
Brave SEO Jun-2015
 
SEO for BRAVE
SEO for BRAVESEO for BRAVE
SEO for BRAVE
 
Syed ifraajamal final-deck-live
Syed ifraajamal final-deck-liveSyed ifraajamal final-deck-live
Syed ifraajamal final-deck-live
 
Guest Posting Case Study: $200K Revenue (23.85% Increase)
Guest Posting Case Study: $200K Revenue (23.85% Increase)Guest Posting Case Study: $200K Revenue (23.85% Increase)
Guest Posting Case Study: $200K Revenue (23.85% Increase)
 
Wine & Web: Content Strategy for Lead Generation
Wine & Web: Content Strategy for Lead GenerationWine & Web: Content Strategy for Lead Generation
Wine & Web: Content Strategy for Lead Generation
 

Recently uploaded

WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

Front-End Dev for Back-End Developers, That Conference 2014