HTML 
TAGS WE 
USE A LOT
TAGS WE USE A LOT 
<!DOCTYPE html> 
• The doctype instructs the browser to which version of HTML 
the code is written in 
• It must be typed just as it is above, it is case sensitive
TAGS WE USE A LOT 
<html></html> 
• The HTML tags instructs the browser that all of the code is 
HTML code
TAGS WE USE A LOT 
<head></head> 
• Contains information about the page 
• ie: The page title, meta tags, scripts, etc.
TAGS WE USE A LOT 
<title></title> 
• The title of the webpage
TAGS WE USE A LOT 
<body></body> 
• Everything within this tag is what we see on the page 
(paragraphs, images, lists, links, etc.)
TAGS WE USE A LOT 
• Below is a simple website structure using only the basic HTML tags 
• The same structure is needed for any webpage you create. 
<!DOCTYPE html> 
<html> 
<head> 
<title>Page title goes here</title> 
</head> 
<body> Everything you see in your web browser goes in here. 
Items like paragraphs, list, images, links, etc. 
</body> 
</html> 
• Indenting is used to show the opening and closing tags and structure of the 
page 
• It is not required to make the page work correctly – just makes it easier to view 
and edit!
HTML 
FILE 
STRUCTURE
FILE STRUCTURE 
What do I call my pages? 
• The homepage of most websites is often called “index”. 
• Depending on the language it might be index.html, index.php, index.asp... etc. 
• Most web servers are set up to look for the index.html file when loading the 
homepage 
• It can be set to something else – but would require some intervention with the 
server…
FILE NAMES 
What do I call my pages? 
• When naming your web pages you should always use lower case 
• Use the .html extension 
• Don’t use spaces or smiley faces in file names 
• Separate words or elements with a dash (-) 
E.g.: aboutus.html (ok) 
about-us.html (ok) 
about us.html (no) 
about*us.html (no) 
• Spacing or using certain characters in a name can cause display errors or 
break a site entirely
FILE STRUCTURE 
How do I organize my site? 
• Every file for a website has to be contained in one folder, our site “Root 
Folder” 
• You can have sub folders, but all site assets (images, scripts, css) have to be 
reside in one main folder (or in sub folders of that folder…) 
• The “ROOT” folder is the main folder that houses all of your files including the 
sub folders 
• In Dreamweaver, save the file 
you have open onto your 
memory stick in a folder 
called “Website” (your new root folder!)
TYPICAL FILE 
STRUCTURE 
Root folder 
Sub folder 
HTML file
GREAT RESOURCE: 
W3C
TAGS TO TRY OUT 
<p></p> Creates a new paragraph 
<br> Inserts a line break 
<hr> Inserts a horizontal rule 
<em></em> Emphasizes a word (with italic or bold) 
<strong></strong> Emphasizes a word (with italic or bold) 
Headings: 
<h1></h1> Creates headings 
<h2></h2> Creates second level headings 
<h3></h3> Creates third level headings 
<h4></h4> Creates forth level headings 
<h5></h5> Creates fifth level headings 
<h6></h6> Creates forth level headings
SIMILAR BUT DIFFERENT… 
• <em></em> Emphasizes a word (with italic or bold) 
• <i></i> Creates italic text 
• <strong></strong> Emphasizes a word (with italic or bold) 
• <b></b> Makes a word bold 
• Often <strong> renders as <b>, and <em> renders as <i> 
• However, there is a difference in the meaning of these tags: 
<b> or <i> defines bold or italic text only 
<strong> or <em> means that you want the text to be rendered in a way 
that the user understands as "important” 
• Today, all major browsers render strong as bold and em as italics 
• However, if a browser one day wants to make a text highlighted with the strong 
feature, it might be cursive for example and not bold!

More Related Content

PPTX
Artistic Web Applications - Week3 - Part 2
PPTX
Week 4 Lecture Part 2
PPTX
Artistic Web Applications - Week3 - Part 1
PPTX
Week 4 Lecture Part 1
PPTX
LecWeek2 lecture-whatiswebdesign-part2
PPTX
Web development basics
Artistic Web Applications - Week3 - Part 2
Week 4 Lecture Part 2
Artistic Web Applications - Week3 - Part 1
Week 4 Lecture Part 1
LecWeek2 lecture-whatiswebdesign-part2
Web development basics

What's hot (20)

PPTX
Web1O1 - Intro to HTML/CSS
PPT
Lesson 2: Getting To Know HTML
PPTX
HTML 5 Tutorial
PPTX
PPTX
Week2 lecture-whatiswebdesign-part1
PPTX
BASICS OF HTML
PPTX
Html.ppt
PPT
1. html introduction
PPTX
Html
PPTX
HTML Start Up - Introduction to HTML
PPTX
Castro Chapter 3
PPTX
PPTX
How the Web Works Using HTML
PPTX
Introducing HTML
PPT
PDF
Html for beginners
PPTX
HTML5 - My First Webpage
ODP
How to Make HTML and CSS Files
PPTX
Links - IntraPage
PPTX
Web design - HTML (Hypertext Markup Language) introduction
Web1O1 - Intro to HTML/CSS
Lesson 2: Getting To Know HTML
HTML 5 Tutorial
Week2 lecture-whatiswebdesign-part1
BASICS OF HTML
Html.ppt
1. html introduction
Html
HTML Start Up - Introduction to HTML
Castro Chapter 3
How the Web Works Using HTML
Introducing HTML
Html for beginners
HTML5 - My First Webpage
How to Make HTML and CSS Files
Links - IntraPage
Web design - HTML (Hypertext Markup Language) introduction

Similar to Artistic Web Applications - Week3 - Part 3 (20)

PPT
HTML course.ppt
PPT
CreatingWebPages-Part1.ppt
PDF
A practical guide to building websites with HTML5 & CSS3
PPTX
About html
PPTX
Module 2-Introduction to HTML (Chapter 2).pptx
PPTX
Html basics
KEY
Class1slides
PDF
Class03Chapter 18Server-Side Development 2: Node.js web.pdf
PDF
Html - Tutorial
PPTX
PDF
Intro to HTML
PPT
Web forms and html (lect 1)
PPTX
Chapter-5.pptx introduction to HTML and CSS
PDF
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
PDF
PDF
HTML_Training_101
PDF
BASIC HTML PROGRAMMING
PDF
Session4
PDF
Web Design Basics
PPTX
HTML course.ppt
CreatingWebPages-Part1.ppt
A practical guide to building websites with HTML5 & CSS3
About html
Module 2-Introduction to HTML (Chapter 2).pptx
Html basics
Class1slides
Class03Chapter 18Server-Side Development 2: Node.js web.pdf
Html - Tutorial
Intro to HTML
Web forms and html (lect 1)
Chapter-5.pptx introduction to HTML and CSS
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
HTML_Training_101
BASIC HTML PROGRAMMING
Session4
Web Design Basics

More from Katherine McCurdy-Lapierre, R.G.D. (11)

PPTX
Module 5 - WCM system comparison
PPTX
Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)
PPTX
Module 3 - Intro to Bootstrap
PPTX
Week 4 - tablet app design
PPTX
Week 3 Lecture: Accessibility
PPTX
Interactive Web Design 5 - Week 2 - Introduction
PPTX
Week 12 CSS - Review from last week
PPTX
Week 12 CSS Font - size
PPTX
Week 12 CSS Font - family
PPTX
PPTX
Week 4 Lecture Accessibility
Module 5 - WCM system comparison
Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)
Module 3 - Intro to Bootstrap
Week 4 - tablet app design
Week 3 Lecture: Accessibility
Interactive Web Design 5 - Week 2 - Introduction
Week 12 CSS - Review from last week
Week 12 CSS Font - size
Week 12 CSS Font - family
Week 4 Lecture Accessibility

Recently uploaded (20)

PPTX
macro complete discussion with given activities
PPTX
MMW-CHAPTER-1-final.pptx major Elementary Education
DOCX
HELMET DETECTION AND BIOMETRIC BASED VEHICLESECURITY USING MACHINE LEARNING.docx
PDF
3-Elementary-Education-Prototype-Syllabi-Compendium.pdf
PPTX
INTRODUCTION TO PHILOSOPHY FULL SEM - COMPLETE.pptxINTRODUCTION TO PHILOSOPHY...
PDF
FAMILY PLANNING (preventative and social medicine pdf)
PDF
Kalaari-SaaS-Founder-Playbook-2024-Edition-.pdf
PDF
BSc-Zoology-02Sem-DrVijay-Comparative anatomy of vertebrates.pdf
PDF
WHAT NURSES SAY_ COMMUNICATION BEHAVIORS ASSOCIATED WITH THE COMP.pdf
PDF
gsas-cvs-and-cover-letters jhvgfcffttfghgvhg.pdf
PDF
[Medicalstudyzone.com] 1. AIIMS NOV EMBER 2015 SOLVED PAPER.pdf
PDF
New_Round_Up_6_SB.pdf download for free, easy to learn
PPTX
Environmental Sciences and Sustainability Chapter 2
PDF
Teacher's Day Quiz 2025
PPTX
FILIPINO 8 Q2 WEEK 1(DAY 1).power point presentation
PDF
HSE and their team are going through the hazards of the issues with learning ...
PDF
V02-Session-4-Leadership-Through-Assessment-MLB.pdf
PDF
GSA-Past-Papers-2010-2024-2.pdf CSS examination
PPTX
Ppt obs emergecy.pptxydirnbduejguxjjdjidjdbuc
PDF
GIÁO ÁN TIẾNG ANH 7 GLOBAL SUCCESS (CẢ NĂM) THEO CÔNG VĂN 5512 (2 CỘT) NĂM HỌ...
macro complete discussion with given activities
MMW-CHAPTER-1-final.pptx major Elementary Education
HELMET DETECTION AND BIOMETRIC BASED VEHICLESECURITY USING MACHINE LEARNING.docx
3-Elementary-Education-Prototype-Syllabi-Compendium.pdf
INTRODUCTION TO PHILOSOPHY FULL SEM - COMPLETE.pptxINTRODUCTION TO PHILOSOPHY...
FAMILY PLANNING (preventative and social medicine pdf)
Kalaari-SaaS-Founder-Playbook-2024-Edition-.pdf
BSc-Zoology-02Sem-DrVijay-Comparative anatomy of vertebrates.pdf
WHAT NURSES SAY_ COMMUNICATION BEHAVIORS ASSOCIATED WITH THE COMP.pdf
gsas-cvs-and-cover-letters jhvgfcffttfghgvhg.pdf
[Medicalstudyzone.com] 1. AIIMS NOV EMBER 2015 SOLVED PAPER.pdf
New_Round_Up_6_SB.pdf download for free, easy to learn
Environmental Sciences and Sustainability Chapter 2
Teacher's Day Quiz 2025
FILIPINO 8 Q2 WEEK 1(DAY 1).power point presentation
HSE and their team are going through the hazards of the issues with learning ...
V02-Session-4-Leadership-Through-Assessment-MLB.pdf
GSA-Past-Papers-2010-2024-2.pdf CSS examination
Ppt obs emergecy.pptxydirnbduejguxjjdjidjdbuc
GIÁO ÁN TIẾNG ANH 7 GLOBAL SUCCESS (CẢ NĂM) THEO CÔNG VĂN 5512 (2 CỘT) NĂM HỌ...

Artistic Web Applications - Week3 - Part 3

  • 1. HTML TAGS WE USE A LOT
  • 2. TAGS WE USE A LOT <!DOCTYPE html> • The doctype instructs the browser to which version of HTML the code is written in • It must be typed just as it is above, it is case sensitive
  • 3. TAGS WE USE A LOT <html></html> • The HTML tags instructs the browser that all of the code is HTML code
  • 4. TAGS WE USE A LOT <head></head> • Contains information about the page • ie: The page title, meta tags, scripts, etc.
  • 5. TAGS WE USE A LOT <title></title> • The title of the webpage
  • 6. TAGS WE USE A LOT <body></body> • Everything within this tag is what we see on the page (paragraphs, images, lists, links, etc.)
  • 7. TAGS WE USE A LOT • Below is a simple website structure using only the basic HTML tags • The same structure is needed for any webpage you create. <!DOCTYPE html> <html> <head> <title>Page title goes here</title> </head> <body> Everything you see in your web browser goes in here. Items like paragraphs, list, images, links, etc. </body> </html> • Indenting is used to show the opening and closing tags and structure of the page • It is not required to make the page work correctly – just makes it easier to view and edit!
  • 9. FILE STRUCTURE What do I call my pages? • The homepage of most websites is often called “index”. • Depending on the language it might be index.html, index.php, index.asp... etc. • Most web servers are set up to look for the index.html file when loading the homepage • It can be set to something else – but would require some intervention with the server…
  • 10. FILE NAMES What do I call my pages? • When naming your web pages you should always use lower case • Use the .html extension • Don’t use spaces or smiley faces in file names • Separate words or elements with a dash (-) E.g.: aboutus.html (ok) about-us.html (ok) about us.html (no) about*us.html (no) • Spacing or using certain characters in a name can cause display errors or break a site entirely
  • 11. FILE STRUCTURE How do I organize my site? • Every file for a website has to be contained in one folder, our site “Root Folder” • You can have sub folders, but all site assets (images, scripts, css) have to be reside in one main folder (or in sub folders of that folder…) • The “ROOT” folder is the main folder that houses all of your files including the sub folders • In Dreamweaver, save the file you have open onto your memory stick in a folder called “Website” (your new root folder!)
  • 12. TYPICAL FILE STRUCTURE Root folder Sub folder HTML file
  • 14. TAGS TO TRY OUT <p></p> Creates a new paragraph <br> Inserts a line break <hr> Inserts a horizontal rule <em></em> Emphasizes a word (with italic or bold) <strong></strong> Emphasizes a word (with italic or bold) Headings: <h1></h1> Creates headings <h2></h2> Creates second level headings <h3></h3> Creates third level headings <h4></h4> Creates forth level headings <h5></h5> Creates fifth level headings <h6></h6> Creates forth level headings
  • 15. SIMILAR BUT DIFFERENT… • <em></em> Emphasizes a word (with italic or bold) • <i></i> Creates italic text • <strong></strong> Emphasizes a word (with italic or bold) • <b></b> Makes a word bold • Often <strong> renders as <b>, and <em> renders as <i> • However, there is a difference in the meaning of these tags: <b> or <i> defines bold or italic text only <strong> or <em> means that you want the text to be rendered in a way that the user understands as "important” • Today, all major browsers render strong as bold and em as italics • However, if a browser one day wants to make a text highlighted with the strong feature, it might be cursive for example and not bold!