introduction to web design, week 1

16
introduction to WEB DESIGN brookline adult and community education SPRING 2012 taught by lou suSi

Upload: lou-susi

Post on 27-Jan-2015

118 views

Category:

Design


3 download

DESCRIPTION

Although the presentation on its own sans live talk may provide little value after the event, I thought I'd post this series of PDF presentations as a current example of my presentation design chops and to show the slideshare community what I'm up to in the after-hours wile working at Mobiquity.

TRANSCRIPT

Page 1: Introduction to Web Design, Week 1

introduction to WEB DESIGN

brookline adult andcommunity education

SPRING 2012 taught by lou suSi

Page 2: Introduction to Web Design, Week 1

what we’ll coverHTML, CSS and some light JavaScript in Dreamweaver and Visual Design in PhotoshopDesigning for the Web as presented in a Browser

Page 3: Introduction to Web Design, Week 1

what we won’t cover in this classFlash or any ‘Multimedia’ Production Designing for All Devices

Page 4: Introduction to Web Design, Week 1

my goals

Page 5: Introduction to Web Design, Week 1

week 1 dip your toes in

Page 6: Introduction to Web Design, Week 1

life in a browser

Page 7: Introduction to Web Design, Week 1

anatomy of a browser

Page 8: Introduction to Web Design, Week 1
Page 9: Introduction to Web Design, Week 1

html{ hypertext markup language }

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>. lou suSi . DESIGN . artist, designer, musician + performer .</title><meta name="description" content="artist, design, musician + performer living + working on the North Shore of Massachusetts"><meta name="keywords" content="lou, susi, lou susi, loususi, bxos, ...<link rel="stylesheet" type="text/css" media="all" href="styles.css" /><link href='http://fonts.googleapis.com/css?family=Josefin+Slab:light,regular,bold' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css'><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body>

the visible part of the website all goes right here

</body></html>

xhtml1-transitional.dtd">

... of Massachusetts”>... design, designer, fun">

... type=”text/css”>

... type=”text/css”>

Page 10: Introduction to Web Design, Week 1

but that’s not what we’re covering here tonight

Page 11: Introduction to Web Design, Week 1

html{ hypertext markup language }

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>. lou suSi . DESIGN . artist, designer, musician + performer .</title><meta name="description" content="artist, design, musician + performer living + working on the North Shore of Massachusetts"><meta name="keywords" content="lou, susi, lou susi, loususi, bxos, ...<link rel="stylesheet" type="text/css" media="all" href="styles.css" /><link href='http://fonts.googleapis.com/css?family=Josefin+Slab:light,regular,bold' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css'><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body>

the visible part of the website all goes right here

</body></html>

xhtml1-transitional.dtd">

... of Massachusetts”>... design, designer, fun">

... type=”text/css”>

... type=”text/css”>

Page 12: Introduction to Web Design, Week 1

tags{ and the anatomy of }

there are really 2 kinds of tags in this world

this kind<p>a brand new website</p>

and that kind<img src="images/schwittr.jpg" width="183" height="191">

Page 13: Introduction to Web Design, Week 1

tags{ and the anatomy of }

most tags look like this, though

<p>a brand new website</p>

i always think of ripples when i think of tags

Page 14: Introduction to Web Design, Week 1
Page 15: Introduction to Web Design, Week 1
Page 16: Introduction to Web Design, Week 1

homework