SlideShare a Scribd company logo
<	
  web	
  design	
  101	
  >	
  
<	
  web	
  design	
  101	
  >	
  
have you installed?!
•  a text editor!
•  Cyberduck (or another FTP client)!
•  a web inspector for your browser!
details on web.mit.edu/2.744/www!
what’s in a webpage?!
6 images!
index.html!
6778.js!
date.js!
ga.js!
style3941.css!
what’s in a webpage?!
what’s in a webpage?!
hypertext markup language!
contains text and links to other pages!
cascading style sheets!
defines the look and feel of your site!
javascript!
adds interactivity to your site!
design guidelines!
enhancing usability and readability!
sketch then code!
sketch then code!
some content may be “below the fold”!
sketch then code!
add navigation arrows!
design for

the screen!
1997! today!
responsive design!
design for

the screen!
80%!
20%!
design for

the screen!
http://www.nngroup.com/articles/scrolling-and-attention/!
provide context!
tell the user where he/she is!
don’t reinvent the wheel!
modify existing layouts and templates!
getbootstrap.com!
foundation.zurb.com! verynicesites.com!
organize content
systematically!
12 column grid!
7 web design
…why ?!12!
1!
12!
1!
1!
1!
2!
1!
3!
1!
4!
1!
6!
lcd!(! )!=!
can achieve many different layouts!
HTML basics!
<lunch>	
  
	
  	
  	
  <hamburger>	
  
	
  	
   	
  <bun></bun>	
  
	
  <lettuce></lettuce>	
  
	
  	
  	
   	
  <tomato></tomato>	
  
	
  	
  	
   	
  <cheese></cheese>	
  
	
  	
  	
   	
  <patty></patty>	
  
	
  	
  	
   	
  <bun></bun>	
  
	
  	
  	
  </hamburger>	
  
</lunch>	
  
	
  
	
  	
  
HTML structure!
<!DOCTYPE	
  html>	
  
<html>	
  
	
  	
  	
  <head>	
  
	
  <title>My	
  First	
  Page</title>	
  
	
  	
  	
  </head>	
  
	
  	
  	
  <body>	
  
	
  <p>Hello	
  World!</p>	
  
	
  	
  	
  </body>	
  
</html>	
  
HTML structure!
HTML tags!
<tag	
  attr=“value”>	
  
	
  content…	
  
</tag>	
  
tag structure!
open  tag  
close  tag  
attribute(s)  
HTML tags!
<patty	
  cooked=“med”>	
  
	
  yum.	
  
</patty>	
  
tag structure!
HTML tags!
<p>	
  
<h1>…<h6>	
  
<a>	
  
<ul>,<ol>,<li>	
  
<table>,<tr>,<td>	
  
<img/>,<video>	
  
view all the tags at: http://www.w3schools.com/tags/!
- paragraph!
- headings!
- link / anchor!
- lists!
- tables!
- images, videos!
typography!
HTML tags!
<b>,<strong>	
  
<i>,<em>	
  
<sup>,<sub>	
  
- bold!
- italics!
- super/subscript!
view all the tags at: http://www.w3schools.com/tags/!
text formatting!
HTML tags!
<div>	
  
<section>	
  
<article>	
  
<br/>	
  
<hr/>	
  
- container!
- section!
- article!
- line break!
- horizontal rule!
view all the tags at: http://www.w3schools.com/tags/!
organization!
adding style!
CSS basics!
<p	
  style=“font-­‐size:14px;”>…</p>	
  
inline styling!
pros!
highly specific!
cons!
highly specific!
hard to maintain!
HTML/CSS coupled!
!
CSS basics!
block styling!
pros!
affects all matched elements!
cons!
HTML/CSS coupled!
!
<style>	
  
	
  	
  p	
  {	
  font-­‐size:	
  14px;	
  }	
  
</style>	
  
CSS basics!
separate file!
pros!
write once for whole site

HTML & CSS decoupled!
cons!
harder to control!
p	
  {	
  
	
  	
  font-­‐size:	
  14px;	
  
}	
  
	
  
CSS basics!
rule syntax!
selector	
  {	
  
	
  	
  property:	
  value;	
  
	
  	
  property:	
  value;	
  
	
  	
  …	
  
}	
  
CSS basics!
properties!
Typography!
font-­‐size	
  
font-­‐weight	
  
font-­‐family	
  
line-­‐height	
  
text-­‐align	
  
	
  
http://htmldog.com/reference/cssproperties/!
http://www.w3schools.com/cssref/!
view all!
Colors!
color	
  
background-­‐color	
  
background-­‐image	
  
line-­‐height	
  
text-­‐align	
  
	
  
Positioning!
position	
  
width,height	
  
margin	
  
padding	
  
border	
  
CSS basics!
selectors!
p	
  {	
  
	
  	
  font-­‐size:	
  14px;	
  
}	
  
<p>	
  
.bp	
  {	
  
	
  	
  color:	
  gray;	
  
}	
  
<p	
  class=“bp”>	
  
#headline	
  {	
  
	
  	
  font-­‐size:20px;	
  
}	
  
<p	
  id=“headline”>	
  
HTML element! CSS rule!
CSS basics!
cascading selectors!
.intro	
  h1	
  {	
  
	
  	
  font-­‐size:18px;	
  
}	
  
<div	
  class=“intro”>	
  
	
  	
  	
  <h1>…</h1>	
  
</div>	
  
	
  
HTML element! CSS rule!
style h1 inside every element with class=“intro”	
  
CSS basics!
box model!
http://htmldog.com/reference/cssproperties/!
http://www.w3schools.com/cssref/!
references!
CSS Zen Garden!
csszengarden.com!
CSS Zen Garden!
csszengarden.com!
2.744 Zen Garden!
what’s next?

!
no official class!
2.744 Product Design!
for class Thursday, February 27!
tutorial: building your storyboard site?!

More Related Content

PDF
CSS架構如何加速功能開發
Oliver Lin
 
PDF
10 tips to improve the usability of Joomla - Joomla World Conference 2014
Sander Potjer
 
PDF
Roll Your Own CSS Framework
Mike Aparicio
 
PDF
Responsive WordPress workflow
James Bundey
 
PDF
디자인 패턴과 YUI를 이용해 Rich UI 빠르게 구현하기
Jinho Jung
 
PPTX
1111הרצאה וורדפרס מתקדם
Shirly Kamusher
 
PPTX
הרצאה מתוקשבת וורדפרס מתקדם
Shirly Kamusher
 
PPTX
How to develop a CSS Framework
Olivier Besson
 
CSS架構如何加速功能開發
Oliver Lin
 
10 tips to improve the usability of Joomla - Joomla World Conference 2014
Sander Potjer
 
Roll Your Own CSS Framework
Mike Aparicio
 
Responsive WordPress workflow
James Bundey
 
디자인 패턴과 YUI를 이용해 Rich UI 빠르게 구현하기
Jinho Jung
 
1111הרצאה וורדפרס מתקדם
Shirly Kamusher
 
הרצאה מתוקשבת וורדפרס מתקדם
Shirly Kamusher
 
How to develop a CSS Framework
Olivier Besson
 

What's hot (20)

PDF
Hardboiled Front End Development — Found.ation
Spiros Martzoukos
 
KEY
Webmonkey
isac Lagerblad
 
PDF
Developing Your Ultimate Package
Simon Collison
 
PDF
Frontend django, Django Web 前端探索
Tim (文昌)
 
PDF
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015
beyond tellerrand
 
PDF
Highly Maintainable, Efficient, and Optimized CSS
Zoe Gillenwater
 
PDF
Speak The Web: The HTML5 Experiments
guestd427df
 
PDF
jQtouch, Building Awesome Webapps
Home
 
PDF
Bootstrap 3 + responsive
hatchpb
 
DOCX
Adding videos
Saint Columban College
 
PDF
Rails Girls Weekly - 初探前端網頁技術 JavaScript 3/3
Kuro Hsu
 
PDF
Responsive Websites
Joe Seifi
 
PDF
Front End Tooling and Performance - Codeaholics HK 2015
Holger Bartel
 
PDF
Week3 office hours
Randall Rode
 
PDF
Responsive Web Design: Clever Tips and Techniques
Vitaly Friedman
 
PDF
Lightning fast sass
chriseppstein
 
ZIP
Joomla Presentation
ghessler
 
PPT
IBM Connection - customize it, #dd13
Dominopoint - Italian Lotus User Group
 
PDF
Be nice to your designers
Pai-Cheng Tao
 
PDF
Webinar: 5 Tricks for WordPress web administrators
Tomasz Dziuda
 
Hardboiled Front End Development — Found.ation
Spiros Martzoukos
 
Webmonkey
isac Lagerblad
 
Developing Your Ultimate Package
Simon Collison
 
Frontend django, Django Web 前端探索
Tim (文昌)
 
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015
beyond tellerrand
 
Highly Maintainable, Efficient, and Optimized CSS
Zoe Gillenwater
 
Speak The Web: The HTML5 Experiments
guestd427df
 
jQtouch, Building Awesome Webapps
Home
 
Bootstrap 3 + responsive
hatchpb
 
Adding videos
Saint Columban College
 
Rails Girls Weekly - 初探前端網頁技術 JavaScript 3/3
Kuro Hsu
 
Responsive Websites
Joe Seifi
 
Front End Tooling and Performance - Codeaholics HK 2015
Holger Bartel
 
Week3 office hours
Randall Rode
 
Responsive Web Design: Clever Tips and Techniques
Vitaly Friedman
 
Lightning fast sass
chriseppstein
 
Joomla Presentation
ghessler
 
IBM Connection - customize it, #dd13
Dominopoint - Italian Lotus User Group
 
Be nice to your designers
Pai-Cheng Tao
 
Webinar: 5 Tricks for WordPress web administrators
Tomasz Dziuda
 
Ad

Similar to 7 web design (20)

PPTX
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
PDF
Punch it Up with HTML and CSS
mtlgirlgeeks
 
PPTX
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
PPT
Supplement web design
shelly3160
 
PDF
Web Design for Literary Theorists II: Overview of CSS (v 1.0)
Patrick Mooney
 
PPTX
Html and css
Sukrit Gupta
 
PDF
Intro to HTML 5 / CSS 3
Tadpole Collective
 
PPTX
Lecture 2 - HTML Basics
KULeuven-OnlinePublishing
 
PPT
HTML & CSS.ppt
vaseemshaik21
 
ODP
Light introduction to HTML
abidibo Contini
 
PPT
Introduction css
sagaroceanic11
 
PPT
Introduction css
sagaroceanic11
 
DOC
web technologiesUnit 1
Pathi Radhika
 
KEY
Artdm171 Week4 Tags
Gilbert Guerrero
 
PDF
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
PDF
HTML_Training_101
John Robey
 
PPTX
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
 
PPTX
Lesson 3
hstryk
 
PDF
Web Concepts - an introduction - introduction
clement swarnappa
 
PPTX
HTML_111.pptx all about introduction etc
saitejapeddaoggu
 
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Punch it Up with HTML and CSS
mtlgirlgeeks
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Supplement web design
shelly3160
 
Web Design for Literary Theorists II: Overview of CSS (v 1.0)
Patrick Mooney
 
Html and css
Sukrit Gupta
 
Intro to HTML 5 / CSS 3
Tadpole Collective
 
Lecture 2 - HTML Basics
KULeuven-OnlinePublishing
 
HTML & CSS.ppt
vaseemshaik21
 
Light introduction to HTML
abidibo Contini
 
Introduction css
sagaroceanic11
 
Introduction css
sagaroceanic11
 
web technologiesUnit 1
Pathi Radhika
 
Artdm171 Week4 Tags
Gilbert Guerrero
 
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
HTML_Training_101
John Robey
 
HTMLforbeginerslearntocodeforbeginersinfh
enisp1
 
Lesson 3
hstryk
 
Web Concepts - an introduction - introduction
clement swarnappa
 
HTML_111.pptx all about introduction etc
saitejapeddaoggu
 
Ad

Recently uploaded (20)

PDF
First-Aid.pdfjavaghavavgahavavavbabavabba
meitohehe
 
PPTX
Mini-Project description of design of expert project
peter349484
 
PPTX
3. Introduction to Materials and springs.pptx
YESIMSMART
 
PPTX
History of interior design- european and american styles.pptx
MINAKSHI SINGH
 
PDF
10 Best UI UX Design Company in UK for User-Centric Solutions
Tenet UI UX
 
PPTX
Engagement for marriage life ethics b.pptx
SyedBabar19
 
PPTX
Digital Printing presentation-update-26.08.24.pptx
MDFoysalAhmed13
 
PDF
How Neuroscience and AI Inspire Next-Gen Design
Andrea Macruz
 
PPTX
DISS-Group-5_110345.pptx Basic Concepts of the major social science
mattygido
 
PPTX
Landscape assignment for landscape architecture
aditikoshley2
 
PDF
Shape Language for Character Design by Adhec Saputra
Adhec Saputra
 
PPTX
Brown Beige Vintage Style History Project Presentation.pptx
mb3030336
 
PDF
Shayna Andrieze Yjasmin Goles - Your VA!
shaynagoles31
 
PDF
SS27 Environments & Design Trend Book Peclers Paris
Peclers Paris
 
PPTX
Introduction-to-Graphic-Design-and-Adobe-Photoshop.pptx
abdullahedpk
 
PPTX
Web Design: Enhancing User Experience & Brand Value
ashokmakwana0303
 
DOCX
prepare sandwiches COOKERY.docx123456789
venuzjoyetorma1998
 
PDF
Fashion project1 kebaya reimagined slideshow
reysultane
 
PPTX
UCSP-Quarter 1-Week 6-Powerpoint Presentation
EmyMaquiling1
 
PPTX
UCSP-Ppt-Lesson-7 Powe point Presentation
EmyMaquiling1
 
First-Aid.pdfjavaghavavgahavavavbabavabba
meitohehe
 
Mini-Project description of design of expert project
peter349484
 
3. Introduction to Materials and springs.pptx
YESIMSMART
 
History of interior design- european and american styles.pptx
MINAKSHI SINGH
 
10 Best UI UX Design Company in UK for User-Centric Solutions
Tenet UI UX
 
Engagement for marriage life ethics b.pptx
SyedBabar19
 
Digital Printing presentation-update-26.08.24.pptx
MDFoysalAhmed13
 
How Neuroscience and AI Inspire Next-Gen Design
Andrea Macruz
 
DISS-Group-5_110345.pptx Basic Concepts of the major social science
mattygido
 
Landscape assignment for landscape architecture
aditikoshley2
 
Shape Language for Character Design by Adhec Saputra
Adhec Saputra
 
Brown Beige Vintage Style History Project Presentation.pptx
mb3030336
 
Shayna Andrieze Yjasmin Goles - Your VA!
shaynagoles31
 
SS27 Environments & Design Trend Book Peclers Paris
Peclers Paris
 
Introduction-to-Graphic-Design-and-Adobe-Photoshop.pptx
abdullahedpk
 
Web Design: Enhancing User Experience & Brand Value
ashokmakwana0303
 
prepare sandwiches COOKERY.docx123456789
venuzjoyetorma1998
 
Fashion project1 kebaya reimagined slideshow
reysultane
 
UCSP-Quarter 1-Week 6-Powerpoint Presentation
EmyMaquiling1
 
UCSP-Ppt-Lesson-7 Powe point Presentation
EmyMaquiling1
 

7 web design