SlideShare a Scribd company logo
1 of 29
MeetupWeb 1O1 – Intro to HTML/CSS katarinamilkova t:   twitter.com/katmilk e:   katarina.milkova@gmail.com
What is the Web? It’s magic! Network of a collection of interlinked hypertext documents accessed via internet Consists of web servers, IP (internet protocol), DNS (domain name service) and pixie dust
Web Consists of many languages  HTML, CSS, JS, PHP, etc. Every language has it’s own syntax and semantics Syntax:  the study of grammar  (how you say something) Semantics:  the study of meaning  (meaning behind what you say)
Web Layers HTML = Content Layer This is the structure and raw content of the page CSS = Presentation Layer This layer add styles to the structure and content of your webpage JS = Behavior Layer This layer dictates how an item behaves when clicked on, hovered over, or sometimes further styled to achieve a certain look/behavior It dictates how things act and react to user interaction
What is HTML? HyperTextMarkup Language It is a simple data language that consists of tags used to display content of a webpage It defines the structure and semantics of your web document It is referred to as the content layer in the web cake analogy Most commonly used today is the more structured way of writing HTML: xHTML     Extensible HyperTextMarkup Language
What is HTML? It is NOT a programming language It is a markup language A markup language is a set of markup tags Uses markup tags to describe web pages (source: http://www.w3schools.com/html/html_intro.asp)
How does it work? Very simple and logical format Much like a word document Read from top to bottom, left to right. Written with text in a plain text editor Consists of tags used to set certain sections apart (bigger text, bolder text, etc) Different tags call different functions and do different things to the HTML text. For a list of tags for HTML 4.0 and xHTML 1.0 visit:  http://www.w3schools.com/tags/default.asp
What is a tag? A tag is the basis for HTML It’s a command enclosed with less-than and greater-than sign <html>, <head>, <body>, <h1>, <p> making text bold, turning text into a heading, grouping sentences to form a paragraph, etc. Most tags come in pairs: an opening (starting) and a closing (ending) tag  <title> title goes here </title> Some tags are self closing, such as a meta tag <meta  name=“”  content=“”  /> Every open tag must correspondingly be closed (source: http://www.w3schools.com/html/html_intro.asp)
What does it look like? <!DOCTYPE  html  PUBLIC … > <html> 	<head> 		<title>Basic HTML Page</title> 		<meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
Closer Look at DOCTYPE <!DOCTYPE  html  PUBLIC … > <html> 	<head> 		<title>Basic HTML Page</title> 		<meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
DOCTYPE? <!DOCTYPE  html  PUBLIC … > The doctype declaration is important  It tells the browser: what type of HTML you are using which convention you’ll need to follow when coding the website content For more info see recommended list of doctypes: http://www.w3.org/QA/2002/04/valid-dtd-list.html Most common: xHTML 1.0 Transitional xHTML 1.0 Strict Newest: HTML5 (not a standard yet!)
Lookat HTML tag <!DOCTYPE  html  PUBLIC … > <html> 	<head> 		<title>Basic HTML Page</title> 		<meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
HTML tag? <html>  </html> Creates basic HTML document <html> The opening HTML tag Sets the starting point of your HTML document </html> The closing HTML tag Sets the closing point of your HTML document
Take a look at HEAD tag <!DOCTYPE  html  PUBLIC … > <html> 	<head> 		<title>Basic HTML Page</title> 		<meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
HEAD tag? <head> </head> Contains header information for the page This is not rendered in the page itself Contains other tags like: <title>, <meta>, <link>, etc. <head> The opening head tag </head> The closing head tag
Look inside the HEAD <!DOCTYPE  html  PUBLIC … > <html> 	<head> <title>Basic HTML Page</title> <meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
Inside the HEAD <title>Title of page</title>  rendered in top of browser or browser tab <meta name=“description”  content=“” /> There are 3 basic types of meta tags used: Content-type: tells browser which character set you’re using. Most common: UTF-8 Description: sets description of website that appears in search engine listings Keywords: lists out keywords and phrases that relate to your page, separated by commas.
Look that BODY tag <!DOCTYPE  html  PUBLIC … > <html> 	<head> 		<title>Basic HTML Page</title> 		<meta  name=“”  content=“” /> 	</head> 	<body> 		<h1>Hello World!</h1> 	</body> </html>
What is the BODY tag? <body> </body> Contains all the contents of the web page This is where all the content of your webpage goes <body> The opening body tag </body> The closing body tag
How do I style my HTML? HTML is not meant for style HTML is just raw content and structure (markup of the document) To style HTML, we use a stylesheet The stylesheet dictates how we present our content (HTML) to the user in the browser Cascading Style Sheets are used to style HTML
What is CSS? Cascading Style Sheets It’s a style language that defines the presentation of your HTML (colors, layout, text-formatting, etc.) Referred to as the presentation layer  Recommended way to control presentation of your HTML document Own language with own syntax
How to include CSS? Inline Written on actual HTML tags Worst way to include CSS                                    *avoid if possible, but there are some exceptions Embedded Written between <style> tag typically in the <head> Override any similar rules in external sheet Styles stay with HTML page and don’t carry over to other pages with your website External Typically loaded in the <head> with a <link> tag Best way to include CSS in document
Including CSS Internal:  Written inline on HTML tags <body  style=“background-color: #f00;”> Embedded:  Written in a <style> tag   <style type=“text/css”  media=“screen”> 	body  { 		     background-color:  #f00; 	} </style> External:  Included as a separate document <link type=“text/css” href=“http://link/file.css” rel=“stylesheet”  media=“screen” />
How CSS looks? #element-id { color: #fff; font-size: 12px; } .element-class { color: #f00; font-weight: 700; }  (selectors, properties and values)
What is JS? Programming (scripting) language that adds functionality to website Behavior layer (functionality) Common Libraries: jQuery, MooTools
Tools to Write Simple text editor works perfectly fine for writing HTML and CSS Notepad, Notepad++, BBEdit,  NetBeans, TextEdit, TextWrangler, TextMate, Dreamweaver, Vim
Helpful Links http://www.w3.org/ http://www.w3.org/html/ http://www.w3.org/Style/CSS/ http://www.w3schools.com/ http://www.htmldog.com/guides/htmlbeginner/
Tools to Have Web Developer Toolbar for Firefox Link: https://addons.mozilla.org/en-us/firefox/addon/web-developer/ Firebug for Firefox Link: https://addons.mozilla.org/en-US/firefox/addon/firebug/
Thank You! Any Questions? SlideShare: http://www.slideshare.net/katmilk/ katarinamilkova t:   twitter.com/katmilk e:   katarina.milkova@gmail.com

More Related Content

What's hot

Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
 

What's hot (20)

Html for beginners
Html for beginnersHtml for beginners
Html for beginners
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Steph's Html5 and css presentation
Steph's Html5 and css presentationSteph's Html5 and css presentation
Steph's Html5 and css presentation
 
Html and css
Html and cssHtml and css
Html and css
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
 
Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 
Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3Artistic Web Applications - Week3 - Part 3
Artistic Web Applications - Week3 - Part 3
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTML
 
Introduction to the Web and HTML
Introduction to the Web and HTMLIntroduction to the Web and HTML
Introduction to the Web and HTML
 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentation
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Html & CSS
Html & CSSHtml & CSS
Html & CSS
 
HTML email design and usability
HTML email design and usabilityHTML email design and usability
HTML email design and usability
 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 

Similar to Web1O1 - Intro to HTML/CSS

The Ulta-Handy HTML Guide
The Ulta-Handy HTML GuideThe Ulta-Handy HTML Guide
The Ulta-Handy HTML Guide
jsved
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technology
vikram singh
 
HTML & Textile Training
HTML & Textile TrainingHTML & Textile Training
HTML & Textile Training
ehealth
 
Module 2 Lesson 1
Module 2 Lesson 1Module 2 Lesson 1
Module 2 Lesson 1
claytors
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
sanjay2211
 

Similar to Web1O1 - Intro to HTML/CSS (20)

Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
HTML_Slideshow1
HTML_Slideshow1HTML_Slideshow1
HTML_Slideshow1
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Html, CSS & Web Designing
Html, CSS & Web DesigningHtml, CSS & Web Designing
Html, CSS & Web Designing
 
The Ulta-Handy HTML Guide
The Ulta-Handy HTML GuideThe Ulta-Handy HTML Guide
The Ulta-Handy HTML Guide
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Html
HtmlHtml
Html
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Class2
Class2Class2
Class2
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technology
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
HTML & Textile Training
HTML & Textile TrainingHTML & Textile Training
HTML & Textile Training
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
Mdst 3559-02-01-html
Mdst 3559-02-01-htmlMdst 3559-02-01-html
Mdst 3559-02-01-html
 
Design Dream
Design DreamDesign Dream
Design Dream
 
Introduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntaxIntroduction to HTML- Week 3- HTMLSyntax
Introduction to HTML- Week 3- HTMLSyntax
 
BasicHTML
BasicHTMLBasicHTML
BasicHTML
 
Module 2 Lesson 1
Module 2 Lesson 1Module 2 Lesson 1
Module 2 Lesson 1
 
Semantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance HtmlSemantically Correct And Standards Compliance Html
Semantically Correct And Standards Compliance Html
 

Recently uploaded

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
MateoGardella
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Recently uploaded (20)

Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 

Web1O1 - Intro to HTML/CSS

  • 1. MeetupWeb 1O1 – Intro to HTML/CSS katarinamilkova t: twitter.com/katmilk e: katarina.milkova@gmail.com
  • 2. What is the Web? It’s magic! Network of a collection of interlinked hypertext documents accessed via internet Consists of web servers, IP (internet protocol), DNS (domain name service) and pixie dust
  • 3. Web Consists of many languages HTML, CSS, JS, PHP, etc. Every language has it’s own syntax and semantics Syntax: the study of grammar (how you say something) Semantics: the study of meaning (meaning behind what you say)
  • 4. Web Layers HTML = Content Layer This is the structure and raw content of the page CSS = Presentation Layer This layer add styles to the structure and content of your webpage JS = Behavior Layer This layer dictates how an item behaves when clicked on, hovered over, or sometimes further styled to achieve a certain look/behavior It dictates how things act and react to user interaction
  • 5. What is HTML? HyperTextMarkup Language It is a simple data language that consists of tags used to display content of a webpage It defines the structure and semantics of your web document It is referred to as the content layer in the web cake analogy Most commonly used today is the more structured way of writing HTML: xHTML Extensible HyperTextMarkup Language
  • 6. What is HTML? It is NOT a programming language It is a markup language A markup language is a set of markup tags Uses markup tags to describe web pages (source: http://www.w3schools.com/html/html_intro.asp)
  • 7. How does it work? Very simple and logical format Much like a word document Read from top to bottom, left to right. Written with text in a plain text editor Consists of tags used to set certain sections apart (bigger text, bolder text, etc) Different tags call different functions and do different things to the HTML text. For a list of tags for HTML 4.0 and xHTML 1.0 visit: http://www.w3schools.com/tags/default.asp
  • 8. What is a tag? A tag is the basis for HTML It’s a command enclosed with less-than and greater-than sign <html>, <head>, <body>, <h1>, <p> making text bold, turning text into a heading, grouping sentences to form a paragraph, etc. Most tags come in pairs: an opening (starting) and a closing (ending) tag <title> title goes here </title> Some tags are self closing, such as a meta tag <meta name=“” content=“” /> Every open tag must correspondingly be closed (source: http://www.w3schools.com/html/html_intro.asp)
  • 9. What does it look like? <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 10. Closer Look at DOCTYPE <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 11. DOCTYPE? <!DOCTYPE html PUBLIC … > The doctype declaration is important It tells the browser: what type of HTML you are using which convention you’ll need to follow when coding the website content For more info see recommended list of doctypes: http://www.w3.org/QA/2002/04/valid-dtd-list.html Most common: xHTML 1.0 Transitional xHTML 1.0 Strict Newest: HTML5 (not a standard yet!)
  • 12. Lookat HTML tag <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 13. HTML tag? <html> </html> Creates basic HTML document <html> The opening HTML tag Sets the starting point of your HTML document </html> The closing HTML tag Sets the closing point of your HTML document
  • 14. Take a look at HEAD tag <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 15. HEAD tag? <head> </head> Contains header information for the page This is not rendered in the page itself Contains other tags like: <title>, <meta>, <link>, etc. <head> The opening head tag </head> The closing head tag
  • 16. Look inside the HEAD <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 17. Inside the HEAD <title>Title of page</title> rendered in top of browser or browser tab <meta name=“description” content=“” /> There are 3 basic types of meta tags used: Content-type: tells browser which character set you’re using. Most common: UTF-8 Description: sets description of website that appears in search engine listings Keywords: lists out keywords and phrases that relate to your page, separated by commas.
  • 18. Look that BODY tag <!DOCTYPE html PUBLIC … > <html> <head> <title>Basic HTML Page</title> <meta name=“” content=“” /> </head> <body> <h1>Hello World!</h1> </body> </html>
  • 19. What is the BODY tag? <body> </body> Contains all the contents of the web page This is where all the content of your webpage goes <body> The opening body tag </body> The closing body tag
  • 20. How do I style my HTML? HTML is not meant for style HTML is just raw content and structure (markup of the document) To style HTML, we use a stylesheet The stylesheet dictates how we present our content (HTML) to the user in the browser Cascading Style Sheets are used to style HTML
  • 21. What is CSS? Cascading Style Sheets It’s a style language that defines the presentation of your HTML (colors, layout, text-formatting, etc.) Referred to as the presentation layer Recommended way to control presentation of your HTML document Own language with own syntax
  • 22. How to include CSS? Inline Written on actual HTML tags Worst way to include CSS *avoid if possible, but there are some exceptions Embedded Written between <style> tag typically in the <head> Override any similar rules in external sheet Styles stay with HTML page and don’t carry over to other pages with your website External Typically loaded in the <head> with a <link> tag Best way to include CSS in document
  • 23. Including CSS Internal: Written inline on HTML tags <body style=“background-color: #f00;”> Embedded: Written in a <style> tag <style type=“text/css” media=“screen”> body { background-color: #f00; } </style> External: Included as a separate document <link type=“text/css” href=“http://link/file.css” rel=“stylesheet” media=“screen” />
  • 24. How CSS looks? #element-id { color: #fff; font-size: 12px; } .element-class { color: #f00; font-weight: 700; } (selectors, properties and values)
  • 25. What is JS? Programming (scripting) language that adds functionality to website Behavior layer (functionality) Common Libraries: jQuery, MooTools
  • 26. Tools to Write Simple text editor works perfectly fine for writing HTML and CSS Notepad, Notepad++, BBEdit, NetBeans, TextEdit, TextWrangler, TextMate, Dreamweaver, Vim
  • 27. Helpful Links http://www.w3.org/ http://www.w3.org/html/ http://www.w3.org/Style/CSS/ http://www.w3schools.com/ http://www.htmldog.com/guides/htmlbeginner/
  • 28. Tools to Have Web Developer Toolbar for Firefox Link: https://addons.mozilla.org/en-us/firefox/addon/web-developer/ Firebug for Firefox Link: https://addons.mozilla.org/en-US/firefox/addon/firebug/
  • 29. Thank You! Any Questions? SlideShare: http://www.slideshare.net/katmilk/ katarinamilkova t: twitter.com/katmilk e: katarina.milkova@gmail.com