30
INTRODUCTION TO HTML5 + CSS [email protected] @ramsescabello

Introduction to HTML5+CSS

Embed Size (px)

DESCRIPTION

Brief introduction to HTML5+CSS for designers.

Citation preview

Page 1: Introduction to HTML5+CSS

INTRODUCTION TOHTML5 + CSS

[email protected] @ramsescabello

Page 2: Introduction to HTML5+CSS

why the helldo you have to learnHTML5 + CSS ?

Page 3: Introduction to HTML5+CSS

why the helldo you have to learnHTML5 + CSS ?

YOU ARE A DESIGNER.

Page 4: Introduction to HTML5+CSS

Ok. So now...What is HTML ?

Page 5: Introduction to HTML5+CSS

Ok. So now...What is HTML ?

Page 6: Introduction to HTML5+CSS

Computers don’t think,but YOU DO!.

Page 7: Introduction to HTML5+CSS

HTML is the languageused by you to writewebsites and thereforehelp computerscommunicate.

Page 8: Introduction to HTML5+CSS

Computers translateHTML into our languageusing a tool calledBrowser.

Page 9: Introduction to HTML5+CSS

What is the structureof HTML language?

Page 10: Introduction to HTML5+CSS

<head>HTML islike you.

Page 11: Introduction to HTML5+CSS

Website TitleAuthorDescription

<head>HTML islike you.

Page 12: Introduction to HTML5+CSS

Website TitleAuthorDescription

<head>

The contentof the web.

<body>

HTML islike you.

Page 13: Introduction to HTML5+CSS

HTML islike you.

CSS definesyour style.

Page 14: Introduction to HTML5+CSS

HTML islike you.

CSS definesyour style.

Page 15: Introduction to HTML5+CSS

Just in case you missed out.

Page 16: Introduction to HTML5+CSS

HTML defines the content.

Hello World!

Page 17: Introduction to HTML5+CSS

HTML defines the content.CSS defines the style.

Hello World!

Page 18: Introduction to HTML5+CSS

before we get started!

1

Get paper& pen

2

Download a greatOpen Source editor

www.brackets.io

3

Have a lot of patience.Learning takes time.

You can do it.

Page 19: Introduction to HTML5+CSS

html syntax

<html>

Name of the function

Function starts

Function ends

Page 20: Introduction to HTML5+CSS

html syntaxhtml syntaxevery beginninghas an end.

<html>

content

</html>

Page 21: Introduction to HTML5+CSS

<body>

<p>Hello</p>

</body>

html syntaxhtml syntaxBE CLEAN!Indent all your code.

Page 22: Introduction to HTML5+CSS

<body>

<p>Hello</p>

</body>

html syntaxhtml syntaxBE CLEAN!Indent all your code.

Page 23: Introduction to HTML5+CSS

html syntaxSample tag: Paragraphs

<p>Here you would write

all the text from the

paragraph</p>

Page 24: Introduction to HTML5+CSS

html syntaxSample tag: Images

<img src=”name.jpg” alt=”” />

Page 25: Introduction to HTML5+CSS

html syntaxSample tag: Images

<img src=”name.jpg” alt=”” />

Some HTML tags close themselves.Inside a tag you can have variables.

Page 26: Introduction to HTML5+CSS

html syntaxSample tag: Links

<a href=”url” alt=””>

Name of the link

</a>

Page 27: Introduction to HTML5+CSS

html online resources

www.google.com

Page 28: Introduction to HTML5+CSS

html online resources

http://www.w3schools.com/html/default.asp

Page 29: Introduction to HTML5+CSS

html online resources

http://tympanus.net/codrops/

Page 30: Introduction to HTML5+CSS

let’s get started!

http://bit.ly/EjemploHTMLProduccionGrafica