creative web 01 - introduction to the web & web development

31
#Creative Web 1 Modern web design.

Upload: lukas-oppermann

Post on 24-Jun-2015

335 views

Category:

Design


0 download

DESCRIPTION

Introduction to the internet and web development for my class at BTK University of applied science.

TRANSCRIPT

Page 1: Creative Web 01 - Introduction to the web & web development

#Creative Web 1Modern web design.

Page 2: Creative Web 01 - Introduction to the web & web development

Short historyof computers & the internet

Page 3: Creative Web 01 - Introduction to the web & web development

Zusefirst programmable computer 1938

Page 4: Creative Web 01 - Introduction to the web & web development

1980shome computers hit the market

Page 5: Creative Web 01 - Introduction to the web & web development

Early internetNSFNET T3 Network 1992

Page 6: Creative Web 01 - Introduction to the web & web development

Sir Tim Berners-LeeInvents the Internet of today 1989

Page 7: Creative Web 01 - Introduction to the web & web development

The first websiteHTML only

Page 8: Creative Web 01 - Introduction to the web & web development

HTML (23y)HyperText Markup Language

Page 9: Creative Web 01 - Introduction to the web & web development

CSS (18y)Cascading Style Sheets

Page 10: Creative Web 01 - Introduction to the web & web development

JS (18y)JavaScript / ECMA Script

Page 11: Creative Web 01 - Introduction to the web & web development

#What is the internet?A simplified explanation.

Page 12: Creative Web 01 - Introduction to the web & web development

#The internet is…a network of connected servers.

Page 13: Creative Web 01 - Introduction to the web & web development

#A server is…a computer which is always online (connected to the network).

Page 14: Creative Web 01 - Introduction to the web & web development

#Surfing the web means…connecting to one of the servers.

Page 15: Creative Web 01 - Introduction to the web & web development

#Technologies.

Page 16: Creative Web 01 - Introduction to the web & web development

#BackendPHP, Ruby, .NET, SQL, etc.

Page 17: Creative Web 01 - Introduction to the web & web development

#FrontendHTML, DOM, CSS, JavaScript

Page 18: Creative Web 01 - Introduction to the web & web development

#HTMLStructure & content

Page 19: Creative Web 01 - Introduction to the web & web development

#DOMDocument object model

Page 20: Creative Web 01 - Introduction to the web & web development

#CSSStyling layer

Page 21: Creative Web 01 - Introduction to the web & web development

#JavaScriptInteraction layer

Page 22: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html> 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.

Page 23: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.

Page 24: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. </html>

Page 25: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. <head> 4. 5. 6. </head> 7. 8. 9. 10. 11. 12. 13. </html>

Page 26: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. <head> 4. 5. 6. </head> 7. <body> 8. 9. 10. 11. 12. </body> 13. </html>

Page 27: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. <head> 4. <meta name="description" content="" /> 5. 6. </head> 7. <body> 8. 9. 10. 11. 12. </body> 13. </html>

Page 28: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. <head> 4. <meta name="description" content="" /> 5. <title>My portfolio<title/> 6. </head> 7. <body> 8. 9. 10. 11. 12. </body> 13. </html>

Page 29: Creative Web 01 - Introduction to the web & web development

1. <!DOCTYPE html><!-- HTML5 --> 2. <html> 3. <head> 4. <meta name="description" content="" /> 5. <title>My portfolio<title/> 6. </head> 7. <body> 8. <div> 9. <a href=“google.com”>Das 10. ist ein Link</a> 11. </div> 12. </body> 13. </html>

Page 31: Creative Web 01 - Introduction to the web & web development

#Homeworkhttp://tiny.cc/cw-html