SlideShare une entreprise Scribd logo
1  sur  67
Télécharger pour lire hors ligne
hello.

Friday, 26 March 2010
Rachel Andrew

                            @rachelandrew

                           rachelandrew.co.uk
                           edgeofmyseat.com
                             grabaperch.com


Friday, 26 March 2010
Start here

Friday, 26 March 2010
1996

Friday, 26 March 2010
Friday, 26 March 2010
2010

Friday, 26 March 2010
(X)HTML
                <p><strong>Hello</strong>,
                world!</p>




Friday, 26 March 2010
Be Strict
                <!DOCTYPE html PUBLIC "-//W3C//
                DTD XHTML 1.0 Strict//EN"
                "http://www.w3.org/TR/xhtml1/
                DTD/xhtml1-strict.dtd">

                <!DOCTYPE HTML PUBLIC "-//W3C//
                DTD HTML 4.01//EN"
                "http://www.w3.org/TR/html4/
                strict.dtd">

Friday, 26 March 2010
Semantics

                        the meaning in your mark-up




Friday, 26 March 2010
Headings
                <h1>The main heading</h1>

                <h2>A sub heading</h2>

                <h3>A sub-sub heading</h3>




Friday, 26 March 2010
Lists
                <ul>
                 <li>Eggs</li>
                 <li>Flour</li>
                 <li>Milk</li>
                </li>




Friday, 26 March 2010
Quotes
                <blockquote><p>Behind every
                successful woman is a
                substantial amount of coffee.
                </p></blockquote>




Friday, 26 March 2010
Accessible

Friday, 26 March 2010
CSS

Friday, 26 March 2010
Core Skills

                              HTML/XHTML
                                    CSS
                         Semantic use of mark-up
                        Consideration of accessibility




Friday, 26 March 2010
Accessing the web

                           browsers and other devices




Friday, 26 March 2010
Browsers

Friday, 26 March 2010
Older browsers

                        Internet Explorer 6 - I’m looking at you...




Friday, 26 March 2010
Main IE6 issues
                                       CSS bugs
                        Lack of support for some CSS properties
                                 No Alpha PNG support




Friday, 26 March 2010
“Anyone who slaps a ‘this page is best viewed with
                Browser X’ label on a Web page appears to be yearning
                for the bad old days, before the Web, when you had
                very little chance of reading a document written on
                another computer, another word processor, or another
                network.”

                Tim Berners-Lee




Friday, 26 March 2010
Graded Browser
                           Support

                        http://developer.yahoo.com/yui/articles/gbs/




Friday, 26 March 2010
Other devices

                  Phones, screen readers, the iPad, whatever comes next




Friday, 26 March 2010
JavaScript

Friday, 26 March 2010
The bad old way
                <a href=”#” onclick=”window.open
                (‘/img/large.jpg’,‘popup’,‘300’,
                500’)”>view large image</a>




Friday, 26 March 2010
Unobtrusive
                <a href=”/img/large.jpg”
                class=”popup”>view large image</
                a>




Friday, 26 March 2010
JavaScript libraries

                                jQuery
                                  YUI
                               Prototype




Friday, 26 March 2010
Ajax

Friday, 26 March 2010
Friday, 26 March 2010
Progressive
                        enhancement
                             Mark-up
                                 .
                               CSS
                                 .
                            JavaScript




Friday, 26 March 2010
Flash

Friday, 26 March 2010
The server-side

                           Back-end development




Friday, 26 March 2010
All languages are
                              rubbish.

                         pick the one you find least rubbish.




Friday, 26 March 2010
Pick One.

Friday, 26 March 2010
Databases

Friday, 26 March 2010
Frameworks

                        Excellent ... once you know how to code.




Friday, 26 March 2010
APIs

                        Use existing data sources




Friday, 26 March 2010
The Future

Friday, 26 March 2010
HTML5

Friday, 26 March 2010
XHTML or HTML
                            style




Friday, 26 March 2010
<div id=”header”></div>

                <div id=”nav”></div>

                <div id=”content”></div>

                <div id=”sidebar”></div>




Friday, 26 March 2010
<header></header>

                <nav></nav>

                <article></article>

                <aside></aside>




Friday, 26 March 2010
Video
                <video width="640" height="360"
                src="http://www.youtube.com/
                demo/google_main.mp4" controls
                autobuffer>
                </video>




Friday, 26 March 2010
Browser Support

                        You can start using HTML5 right now.




Friday, 26 March 2010
HTML5 Resources

                                      html5doctor.com
                                      html5demos.com
                        http://articles.sitepoint.com/article/html-5-
                                        snapshot-2009




Friday, 26 March 2010
CSS 3

Friday, 26 March 2010
Modular

                        Some modules more complete than others




Friday, 26 March 2010
New selectors
                li:first-child {}

                li:last-child {}

                tr:nth-child(odd) { }




Friday, 26 March 2010
Backgrounds &
                           Borders
                .box {
                  border-radius: 5px
                }




Friday, 26 March 2010
RGBa & Opacity
                .box {
                  background-color:rgb(0,0,255);
                  opacity: 0.5;
                }

                .box {
                  background-color: rgba(0,0,255,0.5);
                }




Friday, 26 March 2010
Browser Support




Friday, 26 March 2010
Friday, 26 March 2010
Vendor prefixes
                .box {
                  border-radius: 5px
                  moz-border-radius: 5px;
                  webkit-border-radius: 5px;
                }




Friday, 26 March 2010
Friday, 26 March 2010
Internet Explorer 9

                           Excellent CSS3 selector support
                              Support for border-radius
                                        RGBa




Friday, 26 March 2010
CSS3 Resources

                                             css3.info
                                http://dev.opera.com/articles/css/
                        http://24ways.org/2009/cleaner-code-with-css3-
                                             selectors




Friday, 26 March 2010
Typography

Friday, 26 March 2010
@font-face
                @font-face {
                  font-family: "gesta-1";
                  src: url(gesta.ttf);
                  font-style: normal;
                  font-variant: normal;
                  font-weight: 400;
                }




Friday, 26 March 2010
Hosted fonts

                          www.typekit.com




Friday, 26 March 2010
YOU.

Friday, 26 March 2010
“[...] let me know what piece of advice you would give
                to someone who will be graduating in a years time,
                what would you suggest they are thinking about now to
                help them be as employable as possible upon
                graduation?
                http://www.rachelandrew.co.uk/archives/2010/02/27/your-top-tips-for-students/




Friday, 26 March 2010
Love what you do
                “I truly believe the most important thing a web
                designer/developer can have is passion, because if they
                are excited by something, they can learn it.”
                - Ryan Townsend




Friday, 26 March 2010
Get real experience
                “Get your hands dirty building and designing things that
                see the light of day. Maybe its not a site, but an iphone
                app, or contributing code or small UI enhancements to
                a favorite open source project.”
                - Chris Casciano




Friday, 26 March 2010
Your own site
                if nothing else, start a blog and/or portfolio site – most
                employers will be looking for enthusiastic and proactive
                people, and a potential web designer who hasn’t got a
                personal website is neither of these!
                - Rick Hurst




Friday, 26 March 2010
Community
                ...take part in as many online communities as possible,
                ask questions of other people about what you are
                doing, help people out when they have problems you
                know the answer to. This work will become your
                ’social signature’
                - Tim Parkin




Friday, 26 March 2010
Networking
                “Many web events offer good student discounts and I’ve
                attended FOWD and going to DIBI for very reduced
                rates and students should be encouraged to attend
                these and any local events.”
                - Graeme (current student)




Friday, 26 March 2010
Your Turn.

Friday, 26 March 2010
Thank you.

                                       Twitter: @rachelandrew
                                     Email: me@rachelandrew.co.uk
                        http://www.rachelandrew.co.uk/presentations/university-of-abertay-dundee/




Friday, 26 March 2010

Contenu connexe

En vedette

Green Roofs Cooling Summertime Urban Heat Islands
Green Roofs Cooling Summertime Urban Heat IslandsGreen Roofs Cooling Summertime Urban Heat Islands
Green Roofs Cooling Summertime Urban Heat IslandsFarrah85p
 
O'Hare International Airport Green Roof Project
O'Hare International Airport Green Roof ProjectO'Hare International Airport Green Roof Project
O'Hare International Airport Green Roof ProjectFarrah85p
 
Novice Programmers Workshop
Novice Programmers WorkshopNovice Programmers Workshop
Novice Programmers WorkshopAlec Clews
 
Construction of an Elevated Garden - The Basics of Growing Green Roofs
Construction of an Elevated Garden - The Basics of Growing Green RoofsConstruction of an Elevated Garden - The Basics of Growing Green Roofs
Construction of an Elevated Garden - The Basics of Growing Green RoofsFarrah85p
 
Development of Modular Green Roofs for High-density Urban Cities
Development of Modular Green Roofs for High-density Urban CitiesDevelopment of Modular Green Roofs for High-density Urban Cities
Development of Modular Green Roofs for High-density Urban CitiesFarrah85p
 
Garden Roof Planning Guide
Garden Roof Planning GuideGarden Roof Planning Guide
Garden Roof Planning GuideFarrah85p
 

En vedette (6)

Green Roofs Cooling Summertime Urban Heat Islands
Green Roofs Cooling Summertime Urban Heat IslandsGreen Roofs Cooling Summertime Urban Heat Islands
Green Roofs Cooling Summertime Urban Heat Islands
 
O'Hare International Airport Green Roof Project
O'Hare International Airport Green Roof ProjectO'Hare International Airport Green Roof Project
O'Hare International Airport Green Roof Project
 
Novice Programmers Workshop
Novice Programmers WorkshopNovice Programmers Workshop
Novice Programmers Workshop
 
Construction of an Elevated Garden - The Basics of Growing Green Roofs
Construction of an Elevated Garden - The Basics of Growing Green RoofsConstruction of an Elevated Garden - The Basics of Growing Green Roofs
Construction of an Elevated Garden - The Basics of Growing Green Roofs
 
Development of Modular Green Roofs for High-density Urban Cities
Development of Modular Green Roofs for High-density Urban CitiesDevelopment of Modular Green Roofs for High-density Urban Cities
Development of Modular Green Roofs for High-density Urban Cities
 
Garden Roof Planning Guide
Garden Roof Planning GuideGarden Roof Planning Guide
Garden Roof Planning Guide
 

Similaire à University of Abertay Dundee - afternoon

Responsive web design - Drupal theming
Responsive web design - Drupal themingResponsive web design - Drupal theming
Responsive web design - Drupal themingadifferentdesign
 
Affordances in Modern Web Design
Affordances in Modern Web DesignAffordances in Modern Web Design
Affordances in Modern Web DesignUX Booth
 
Nick Sieger-Exploring Rails 3 Through Choices
Nick Sieger-Exploring Rails 3 Through Choices Nick Sieger-Exploring Rails 3 Through Choices
Nick Sieger-Exploring Rails 3 Through Choices ThoughtWorks
 
Designing With Type :: FontConf 2010
Designing With Type :: FontConf 2010Designing With Type :: FontConf 2010
Designing With Type :: FontConf 2010Kyle Meyer
 
Node.js and websockets intro
Node.js and websockets introNode.js and websockets intro
Node.js and websockets introkompozer
 
Adapting to the Unknown
Adapting to the UnknownAdapting to the Unknown
Adapting to the UnknownR/GA
 
Availability, the Cloud and Everything
Availability, the Cloud and EverythingAvailability, the Cloud and Everything
Availability, the Cloud and Everythinglogicalstack
 
HTML 5: The Future of the Web
HTML 5: The Future of the WebHTML 5: The Future of the Web
HTML 5: The Future of the WebTim Wright
 
Sencha Touch Workshop
Sencha Touch WorkshopSencha Touch Workshop
Sencha Touch WorkshopDavid Kaneda
 
Sharing Your Content w/o Hurting Your Copyright
Sharing Your Content w/o Hurting Your CopyrightSharing Your Content w/o Hurting Your Copyright
Sharing Your Content w/o Hurting Your CopyrightPlagiarism Today
 
Go! Go! Gadgets. Writing an OpenSocial Application
Go! Go! Gadgets.  Writing an OpenSocial ApplicationGo! Go! Gadgets.  Writing an OpenSocial Application
Go! Go! Gadgets. Writing an OpenSocial ApplicationMark Halvorson
 
CSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp BostonCSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp BostonJen Simmons
 
UWS Workshop: Social Media 101 for Contemporary Screen Actors
UWS Workshop: Social Media 101 for Contemporary Screen ActorsUWS Workshop: Social Media 101 for Contemporary Screen Actors
UWS Workshop: Social Media 101 for Contemporary Screen ActorsJennifer Jones
 
[T3CON12CA] TYPO3 Phoenix - The Current State
[T3CON12CA] TYPO3 Phoenix - The Current State[T3CON12CA] TYPO3 Phoenix - The Current State
[T3CON12CA] TYPO3 Phoenix - The Current StateChristian Müller
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project ArgoWesley Lindamood
 
For every site a make file
For every site a make fileFor every site a make file
For every site a make fileDevelopment Seed
 
Campus Party 2010
Campus Party 2010Campus Party 2010
Campus Party 2010Fabio Akita
 

Similaire à University of Abertay Dundee - afternoon (20)

Responsive web design - Drupal theming
Responsive web design - Drupal themingResponsive web design - Drupal theming
Responsive web design - Drupal theming
 
Affordances in Modern Web Design
Affordances in Modern Web DesignAffordances in Modern Web Design
Affordances in Modern Web Design
 
Building a Website The Easy Way With Wordpress
Building a Website The Easy Way With WordpressBuilding a Website The Easy Way With Wordpress
Building a Website The Easy Way With Wordpress
 
Wordpress workshop
Wordpress workshopWordpress workshop
Wordpress workshop
 
Nick Sieger-Exploring Rails 3 Through Choices
Nick Sieger-Exploring Rails 3 Through Choices Nick Sieger-Exploring Rails 3 Through Choices
Nick Sieger-Exploring Rails 3 Through Choices
 
Designing With Type :: FontConf 2010
Designing With Type :: FontConf 2010Designing With Type :: FontConf 2010
Designing With Type :: FontConf 2010
 
Node.js and websockets intro
Node.js and websockets introNode.js and websockets intro
Node.js and websockets intro
 
Adapting to the Unknown
Adapting to the UnknownAdapting to the Unknown
Adapting to the Unknown
 
Availability, the Cloud and Everything
Availability, the Cloud and EverythingAvailability, the Cloud and Everything
Availability, the Cloud and Everything
 
HTML 5: The Future of the Web
HTML 5: The Future of the WebHTML 5: The Future of the Web
HTML 5: The Future of the Web
 
Sencha Touch Workshop
Sencha Touch WorkshopSencha Touch Workshop
Sencha Touch Workshop
 
Sharing Your Content w/o Hurting Your Copyright
Sharing Your Content w/o Hurting Your CopyrightSharing Your Content w/o Hurting Your Copyright
Sharing Your Content w/o Hurting Your Copyright
 
Go! Go! Gadgets. Writing an OpenSocial Application
Go! Go! Gadgets.  Writing an OpenSocial ApplicationGo! Go! Gadgets.  Writing an OpenSocial Application
Go! Go! Gadgets. Writing an OpenSocial Application
 
CSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp BostonCSS3: The Future is Now at Drupal Design Camp Boston
CSS3: The Future is Now at Drupal Design Camp Boston
 
UWS Workshop: Social Media 101 for Contemporary Screen Actors
UWS Workshop: Social Media 101 for Contemporary Screen ActorsUWS Workshop: Social Media 101 for Contemporary Screen Actors
UWS Workshop: Social Media 101 for Contemporary Screen Actors
 
[T3CON12CA] TYPO3 Phoenix - The Current State
[T3CON12CA] TYPO3 Phoenix - The Current State[T3CON12CA] TYPO3 Phoenix - The Current State
[T3CON12CA] TYPO3 Phoenix - The Current State
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project Argo
 
For every site a make file
For every site a make fileFor every site a make file
For every site a make file
 
Spring 3
Spring 3Spring 3
Spring 3
 
Campus Party 2010
Campus Party 2010Campus Party 2010
Campus Party 2010
 

Plus de Rachel 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
 
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
 
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
 
The Creative New World of CSS
The Creative New World of CSSThe Creative New World of CSS
The Creative New World of CSSRachel Andrew
 
Into the Weeds of CSS Layout
Into the Weeds of CSS LayoutInto the Weeds of CSS Layout
Into the Weeds of CSS LayoutRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Rachel Andrew
 
View Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsView Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsRachel Andrew
 
DevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayRachel Andrew
 
Start Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSStart Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSRachel Andrew
 
404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & FriendsRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Rachel Andrew
 
Laying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgRachel Andrew
 
Solving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSRachel Andrew
 
Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Rachel Andrew
 
Web Summer Camp Keynote
Web Summer Camp KeynoteWeb Summer Camp Keynote
Web Summer Camp KeynoteRachel Andrew
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldRachel Andrew
 
An Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldRachel Andrew
 
Perch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersRachel Andrew
 
Evergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersEvergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersRachel Andrew
 

Plus de Rachel Andrew (20)

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
 
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
 
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
 
The Creative New World of CSS
The Creative New World of CSSThe Creative New World of CSS
The Creative New World of CSS
 
Into the Weeds of CSS Layout
Into the Weeds of CSS LayoutInto the Weeds of CSS Layout
Into the Weeds of CSS Layout
 
Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17Solving Layout Problems with CSS Grid & Friends - DevFest17
Solving Layout Problems with CSS Grid & Friends - DevFest17
 
Graduating to Grid
Graduating to GridGraduating to Grid
Graduating to Grid
 
View Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & FriendsView Source London: Solving Layout Problems with CSS Grid & Friends
View Source London: Solving Layout Problems with CSS Grid & Friends
 
DevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout todayDevFest Nantes - Start Using CSS Grid Layout today
DevFest Nantes - Start Using CSS Grid Layout today
 
Start Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJSStart Using CSS Grid Layout Today - RuhrJS
Start Using CSS Grid Layout Today - RuhrJS
 
404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends404.ie: Solving Layout Problems with CSS Grid & Friends
404.ie: Solving Layout Problems with CSS Grid & Friends
 
Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17Solving Layout Problems with CSS Grid & Friends - WEBU17
Solving Layout Problems with CSS Grid & Friends - WEBU17
 
Laying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf FreiburgLaying out the future with grid & flexbox - Smashing Conf Freiburg
Laying out the future with grid & flexbox - Smashing Conf Freiburg
 
Solving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJSSolving Layout Problems with CSS Grid & Friends - NordicJS
Solving Layout Problems with CSS Grid & Friends - NordicJS
 
Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout Google Developers Experts Summit 2017 - CSS Layout
Google Developers Experts Summit 2017 - CSS Layout
 
Web Summer Camp Keynote
Web Summer Camp KeynoteWeb Summer Camp Keynote
Web Summer Camp Keynote
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real World
 
An Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real WorldAn Event Apart DC - New CSS Layout meets the Real World
An Event Apart DC - New CSS Layout meets the Real World
 
Perch, Patterns and Old Browsers
Perch, Patterns and Old BrowsersPerch, Patterns and Old Browsers
Perch, Patterns and Old Browsers
 
Evergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsersEvergreen websites for Evergreen browsers
Evergreen websites for Evergreen browsers
 

Dernier

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 

Dernier (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 

University of Abertay Dundee - afternoon

  • 2. Rachel Andrew @rachelandrew rachelandrew.co.uk edgeofmyseat.com grabaperch.com Friday, 26 March 2010
  • 7. (X)HTML <p><strong>Hello</strong>, world!</p> Friday, 26 March 2010
  • 8. Be Strict <!DOCTYPE html PUBLIC "-//W3C// DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/ DTD/xhtml1-strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C// DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/ strict.dtd"> Friday, 26 March 2010
  • 9. Semantics the meaning in your mark-up Friday, 26 March 2010
  • 10. Headings <h1>The main heading</h1> <h2>A sub heading</h2> <h3>A sub-sub heading</h3> Friday, 26 March 2010
  • 11. Lists <ul> <li>Eggs</li> <li>Flour</li> <li>Milk</li> </li> Friday, 26 March 2010
  • 12. Quotes <blockquote><p>Behind every successful woman is a substantial amount of coffee. </p></blockquote> Friday, 26 March 2010
  • 15. Core Skills HTML/XHTML CSS Semantic use of mark-up Consideration of accessibility Friday, 26 March 2010
  • 16. Accessing the web browsers and other devices Friday, 26 March 2010
  • 18. Older browsers Internet Explorer 6 - I’m looking at you... Friday, 26 March 2010
  • 19. Main IE6 issues CSS bugs Lack of support for some CSS properties No Alpha PNG support Friday, 26 March 2010
  • 20. “Anyone who slaps a ‘this page is best viewed with Browser X’ label on a Web page appears to be yearning for the bad old days, before the Web, when you had very little chance of reading a document written on another computer, another word processor, or another network.” Tim Berners-Lee Friday, 26 March 2010
  • 21. Graded Browser Support http://developer.yahoo.com/yui/articles/gbs/ Friday, 26 March 2010
  • 22. Other devices Phones, screen readers, the iPad, whatever comes next Friday, 26 March 2010
  • 24. The bad old way <a href=”#” onclick=”window.open (‘/img/large.jpg’,‘popup’,‘300’, 500’)”>view large image</a> Friday, 26 March 2010
  • 25. Unobtrusive <a href=”/img/large.jpg” class=”popup”>view large image</ a> Friday, 26 March 2010
  • 26. JavaScript libraries jQuery YUI Prototype Friday, 26 March 2010
  • 29. Progressive enhancement Mark-up . CSS . JavaScript Friday, 26 March 2010
  • 31. The server-side Back-end development Friday, 26 March 2010
  • 32. All languages are rubbish. pick the one you find least rubbish. Friday, 26 March 2010
  • 33. Pick One. Friday, 26 March 2010
  • 35. Frameworks Excellent ... once you know how to code. Friday, 26 March 2010
  • 36. APIs Use existing data sources Friday, 26 March 2010
  • 37. The Future Friday, 26 March 2010
  • 39. XHTML or HTML style Friday, 26 March 2010
  • 40. <div id=”header”></div> <div id=”nav”></div> <div id=”content”></div> <div id=”sidebar”></div> Friday, 26 March 2010
  • 41. <header></header> <nav></nav> <article></article> <aside></aside> Friday, 26 March 2010
  • 42. Video <video width="640" height="360" src="http://www.youtube.com/ demo/google_main.mp4" controls autobuffer> </video> Friday, 26 March 2010
  • 43. Browser Support You can start using HTML5 right now. Friday, 26 March 2010
  • 44. HTML5 Resources html5doctor.com html5demos.com http://articles.sitepoint.com/article/html-5- snapshot-2009 Friday, 26 March 2010
  • 45. CSS 3 Friday, 26 March 2010
  • 46. Modular Some modules more complete than others Friday, 26 March 2010
  • 47. New selectors li:first-child {} li:last-child {} tr:nth-child(odd) { } Friday, 26 March 2010
  • 48. Backgrounds & Borders .box { border-radius: 5px } Friday, 26 March 2010
  • 49. RGBa & Opacity .box { background-color:rgb(0,0,255); opacity: 0.5; } .box { background-color: rgba(0,0,255,0.5); } Friday, 26 March 2010
  • 52. Vendor prefixes .box { border-radius: 5px moz-border-radius: 5px; webkit-border-radius: 5px; } Friday, 26 March 2010
  • 54. Internet Explorer 9 Excellent CSS3 selector support Support for border-radius RGBa Friday, 26 March 2010
  • 55. CSS3 Resources css3.info http://dev.opera.com/articles/css/ http://24ways.org/2009/cleaner-code-with-css3- selectors Friday, 26 March 2010
  • 57. @font-face @font-face { font-family: "gesta-1"; src: url(gesta.ttf); font-style: normal; font-variant: normal; font-weight: 400; } Friday, 26 March 2010
  • 58. Hosted fonts www.typekit.com Friday, 26 March 2010
  • 60. “[...] let me know what piece of advice you would give to someone who will be graduating in a years time, what would you suggest they are thinking about now to help them be as employable as possible upon graduation? http://www.rachelandrew.co.uk/archives/2010/02/27/your-top-tips-for-students/ Friday, 26 March 2010
  • 61. Love what you do “I truly believe the most important thing a web designer/developer can have is passion, because if they are excited by something, they can learn it.” - Ryan Townsend Friday, 26 March 2010
  • 62. Get real experience “Get your hands dirty building and designing things that see the light of day. Maybe its not a site, but an iphone app, or contributing code or small UI enhancements to a favorite open source project.” - Chris Casciano Friday, 26 March 2010
  • 63. Your own site if nothing else, start a blog and/or portfolio site – most employers will be looking for enthusiastic and proactive people, and a potential web designer who hasn’t got a personal website is neither of these! - Rick Hurst Friday, 26 March 2010
  • 64. Community ...take part in as many online communities as possible, ask questions of other people about what you are doing, help people out when they have problems you know the answer to. This work will become your ’social signature’ - Tim Parkin Friday, 26 March 2010
  • 65. Networking “Many web events offer good student discounts and I’ve attended FOWD and going to DIBI for very reduced rates and students should be encouraged to attend these and any local events.” - Graeme (current student) Friday, 26 March 2010
  • 66. Your Turn. Friday, 26 March 2010
  • 67. Thank you. Twitter: @rachelandrew Email: me@rachelandrew.co.uk http://www.rachelandrew.co.uk/presentations/university-of-abertay-dundee/ Friday, 26 March 2010