HOW Interactive Design Conference 2013

Similar documents
We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

The Essential Guide to HTML Design

MCH Strategic Data Best Practices Review

Web Designing with UI Designing

How To Design A Website For The Decs

Coding HTML Tips, Tricks and Best Practices

GUIDE TO CODE KILLER RESPONSIVE S

Looking Good! Troubleshooting Display Problems

Sizmek Formats. IAB Mobile Pull. Build Guide

Responsive Web Design for Drupal

Table of Contents Desktop PC and Apple Mac applications Web and mobile device readers Find out more about NewZapp

Responsive Web Design for Teachers. Exercise: Building a Responsive Page with the Fluid Grid Layout Feature

Responsive Design Best Practices

ILLUSTRATION BY 123KLAN

ART 170: Web Design 1

ACE: Dreamweaver CC Exam Guide

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Dreamweaver and Fireworks MX Integration Brian Hogan

Responsive Web Design Creative License

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Theater Signage Dimensions Notes Material. 20"w x 26"h Poster only DO NOT MOUNT. Price Chart Dimensions Notes Material

Fireworks CS4 Tutorial Part 1: Intro

About Blue Sky Sessions

ANDROID TRAINING COURSE MODULES. Module-I: Introduction to Android. Introducing Android. Installing Development Tools. Using the Emulator.

CLASSROOM WEB DESIGNING COURSE

Adobe Illustrator CS6. Illustrating Innovative Web Design

Ad Unit Dimensions / Ad sizes Max File Size GIF / JPEG Max File Size HTML 5 / Flash 40 KB 40 KB 40 KB 40 KB 40KB 40KB 40KB. 50KB *Premium ad formats

WEB DESIGN COURSE CONTENT

GKG3013 Web Design. Jong Sze Joon& Auzani Zeda Mohamed Kassim Faculty of Applied and Creative Arts Universiti Malaysia Sarawak

How To Customize A Forum On Vanilla Forum On A Pcode (Forum) On A Windows (For Forum) On An Html5 (Forums) On Pcode Or Windows 7 (Forforums) On Your Pc

HTML TIPS FOR DESIGNING

Principles of Web Design 6 th Edition. Chapter 12 Responsive Web Design

University of Colorado Boulder Colorado Springs Denver Anschutz Medical Campus. CU ecomm Program Marketing Best Practices

Web Design for Programmers. Brian Hogan NAPCS Slides and content 2008 Brian P. Hogan Do not reproduce in any form without permission

RESPONSIVE DESIGN FOR MOBILE RENDERING

Advertising Specifications, Standards and Guidelines

ADOBE MUSE. Building your first website

A quick guide to... Effective HTML Messages

HTML Power Tips. HTML messages improve your CTR. World s Easiest Marketing.

Responsive Web Design: Media Types/Media Queries/Fluid Images

Designing HTML ers

ADOBE DREAMWEAVER CS3 DESIGN, DEVELOP, AND MAINTAIN STANDARDS-BASED WEBSITES AND APPLICATIONS

<Insert Picture Here>

Basic tutorial for Dreamweaver CS5

Creating mobile layout designs in Adobe Muse

STATEMENT OF PURPOSE

SellerDeck 2014 Responsive Design Guide

Creating an with Constant Contact. A step-by-step guide

Detailed Ad Specifications Rev. 20/03/2015 Babatunde Akinse

Responsive Web Design (RWD) Best Practices Guide Version:

Firefox for Android. Reviewer s Guide. Contact us: press@mozilla.com

TUTORIAL 4 Building a Navigation Bar with Fireworks

Application Note. Building a Website Using Dreamweaver without Programming. Nan Xia. MSU ECE 480 Team 5

Using HTML5 Pack for ADOBE ILLUSTRATOR CS5

Online Advertising Specifications

WEB& WEBSITE DESIGN TRAINING

Development Perspective: DIV and CSS HTML layout. Web Design. Lesson 2. Development Perspective: DIV/CSS

The Essential Guide to HTML Design

ireview Template Manual

Designing HTML s for Use in the Advanced Editor

JTouch Mobile Extension for Joomla! User Guide

Responsive Web Design in Application Express

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Creating an with Constant Contact. A step-by-step guide

Creative Cloud for Web Design

Table of Contents Recommendation Summary... 3 Introduction... 4 Formatting Recommendations... 5 Creative:... 7 Deliverability & Infrastructure:...

Navigating the App Assembly Form

Introducing our new Editor: Creator

Campaign Guidelines and Best Practices

Guide to B2B marketing. Part Three: Building great s

Airangel s WiFi Portal Best Practice Guidelines Get the most out of your WiFi infrastructure

Responsive Design Guide. The fundamentals of designing and building mobile optimized

A set-up guide and general information to help you get the most out of your new theme.

Use ArcGIS Online to Manage

Adobe Dreamweaver Exam Objectives

You can use percentages for both page elements and text. Ems are used for text,

Using the Adventist Framework with your netadventist Site

How to use Google Analytics to track clicks from within s

Building Web Applications

Create a Simple Website. Intel Easy Steps Intel Corporation All rights reserved.

Videoplaza Creative Specification 12 th of March 2012

Your Guide to the All New, Drag & Drop, Mobile-Responsive Builder

Sizmek Formats. HTML5 Page Skin. Build Guide

TECHNICAL SPECS DIGITAL BUS SHELTERS

MARKETING BEST PRACTICES GUIDE

Ad Unit Dimensions / Ad sizes Max File Size. 468 x x x x x x x 250

USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE

MAGENTO THEME SHOE STORE

HTML5 & Digital Signage

SizmekFeatures. HTML5JSSyncFeature

A GUIDE TO MOBILE

Transcription:

HOW Interactive Design Conference 2013 Photoshop to HTML Chris Converse Use this QR code to get the mobile schedule for this conference. Get session and speaker info, lunch ideas, and links for getting social. howidc.codifydesign.com verb. To arrange (design) into a systematic code.

Responsive Web Layout Computer Screen Phone Screen Tablet Screen Use this QR code to view this responsive design example on your camera-enabled device, or visit: codifydesign.com/go/how

Slicing Artwork Both Photoshop and Illustrator provide tools for slicing artwork into small, individual, web-optimized graphics that can be referenced in your web layouts via HTML or CSS. Photoshop Slice tool, located under the Crop tool Individual web graphics resulting form slice tool Photoshop full canvas

HTML Containers for Layout CSS is used to assign the imagery into the HTML elements specified in the HTML5 document. HTML containers <header> <a class= logo href= # ></a> </header> HTML markup for the banner and logo header { height: 225px; background: url(../images/banner_large.jpg) no-repeat right 0px; } header a.logo { width: 150px; height: 85px; top: 35px; left: 20px; background-image: url(../images/logo_large.png); } CSS rules for the banner and logo

HTML5 for Older IE Browsers In order to help the adoption of HTML5, Google offers a free HTML5 shiv. This offering is a single JavaScript file that can be added to your HTML5 web page. Once added, this script allows Internet Explorer 6, 7 & 8 to render HTML5 as if it were an earlier version of HTML. HTML page

HTML markup for the banner One unique aspect of this example is there are no <img> tags in the layout. Images are brought in as backgrounds to other elements, which is determined by CSS. The only HTML markup the <header> tag includes is an anchor link for the logo. CSS is used to determine the size and background image to use in the header, as well as which version of the logo to place in the background of the <a> tag. <header> <a class= logo href= # ></a> </header> 75.2 Kb combined file size Large banner and sidebar photo compressed to JPG @ 65% quality. 32.4 Kb combined file size Medium banner and sidebar photo compressed to JPG @ 50% quality. 12.1 Kb combined file size Small banner and sidebar photo compressed to JPG @ 30% quality.

CSS3 Media queries The following lines of code represent the syntax for including alternate CSS files based on screen size. The CSS file responsible for large screen layout is always included for older browsers. When screen conditions are met, the medium and small screen files override the layout settings in the large layout file. <link rel= stylesheet type= text/css href= includes/stylesheet_layout_medium.css media= only screen and (min-width:551px) and (max-width:900px) /> <link rel= stylesheet type= text/css href= includes/stylesheet_layout_small.css media= only screen and (min-width:50px) and (max-width:550px) /> stylesheet_all.css stylesheet_layout_large.css stylesheet_layout_small.css stylesheet_layout_medium.css

Repositioning Layout for User Experience When using a small screen hand-held device, navigation is often presented to the user at the end of the content. While this is not the convention for larger displays, our design needs to be able to adapt for optimal user experience. In our HTML markup for the following web page, the navigation code follows the content code. When rendered on large and medium screen devices, however, the CSS rules reposition the navigation to the top of the page. This provides an optimized user experience without requiring changes to the markup. Computer screen The navigation repositions below the content on smaller displays. Phone Screen Restyling Links The navigation links are re-styled to look like mobile phone buttons when the small screen CSS rules are invoked. Navigation link style for large and medium screen Navigation links adjust their appearance between screen sizes. Navigation link style for small screens

Photoshop Slices to HTML Photoshop offers two options for generating HTML form slices. One option generates a table-based layout, which may give you a starting point for an HTML Email template; and the other is a CSS-based layout. File > Save for Web > Save Layout constructed with tables Layout constructed with CSS

Photoshop Generator > Assets Photoshop Generator (available in Photoshop CC) allows you create optimized graphics by simply naming layers in your Layers panel. When you activate the Imaeg Assets option in the File > Generate menu, Photoshop will create graphics each time a source layer is modified. Activate Photoshop Generator Image Assets Name layers, or layer groups, with the file type and name you want to be generated Photoshop Generator creates an assets folder, and generates an image for each file-named layer in the document

Photoshop Generator > Edge Reflow When choosing Edge Reflow project, Photoshop Generator will create an Edge Reflow document, in addition to graphics specified by layer names. This allows you to convert your Photoshop layout to a more intelligent, CSS-based layout, that is ready to further editing in Edge Reflow. Generate Edge Reflow Project In addition to graphics, Photoshop Generator created an Edge Reflow document that is ready-for-editing Edge Reflow is a web design tool that allows you to visually create responsive web layouts

New Course: Creating a Responsive HTML Email Designing an HTML email can be challenging, considering the limited capabilities of desktop and web email readers, combined with the small screen sizes of mobile devices. Enter responsive HTML email. Let Chris Converse show you how to design an elegant email that will adapt to varying screen sizes and render correctly in over 30 different mail clients, including Gmail, Yahoo, AOL, and multiple versions of Outlook, as well as Android, ios, and Windows phones. Learn to add complex features like background graphics, rounded corners, and shadows that don t break your email when they can t be displayed. Then create call-toaction buttons, add animation, and style the whole thing with CSS. Plus, explore tools and services that will help you test your campaigns. Start now and learn what is possible with HTML email. Take this course on your favorite online training site, including HOW Design University, Lynda.com, Udemy and Adobe KnowHow. Find coupons on the next page. Learn to create an HTML email that will render acceptably in over 30 of the most commonly used email clients

PSD-to-HTML: The missing Link of Web Design Ever wonder how you actually take a website design from a Photoshop file to HTML? In this course, Chris Converse will teach you how to turn a PSD file into a live HTML and CSS site. By building a website yourself, you ll be better prepared to work with web developers in the future and even be able to tackle your own projects! Plus, this course will show you the basics of responsive web design. With responsive web design your design will be able to shift and display properly on the myriad of devices people use to view the web. Use Coupon Code: CONVERSE and save $20 (for students). codifydesign.com/go/how Create a Responsive HTML Email Designing HTML email can be quite challenging, considering the limited capabilities of many email readers. This online course will show designers how to design and construct an HTML email design that will render properly (and adapt to varying screen sizes) in 30+ different mail clients, including: Outlook, Gmail, Android, ios, and Windows phones. Use Coupon Code: CCONVERSE and save $10 (for students). codifydesign.com/go/how Create a Responsive HTML Email on lynda.com Get a FREE 7-Day Trial from Chris. Visit: codifydesign.com/go/how Create a Responsive HTML Email on udemy.com Take this course for $49% (67% off) and join 380+ creative professionals in this course by Chris Converse Coupon Code: HOW-IDC-2013 codifydesign.com/go/how Create a Responsive HTML Email on Adobe KnowHow codifydesign.com/go/how Find Chris online at: Twitter: Facebook: LinkedIn: YouTube: twitter.com /chrisconverse facebook.com /chrisconversedesign linkedin.com /in/chrisconverse youtube.com /chrisconverse