SlideShare uma empresa Scribd logo
1 de 12
Chapter 1: Intro to
HTML
Section 1: HTML Structure Presentation
Section 2: Layout of an HTML File
Section 3: Working with Lists & Tables
Section 4: HTML Forms & Input
HTML5VideoSeries
What is HTML?
• HTML = Hypertext Markup Language
• Language of The Browser
• HTML is not a programming language
• The World Wide Web Consortium creates the
standards of HTML
• CSS is used to style HTML pages
HTML5VideoSeries
HTML Uses Tag Elements
<p></p> - Paragraph
<h1></h1> - Heading
<i></i> - Italic
<b></b> - Bold
Content is wrapped in an open and closing tag
<h1>This is a heading</h1>
<p>This is a paragraph</p>
HTML5VideoSeries
HTML Document Layout
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
HTML5VideoSeries
Block Elements
Block Level Element
• Creates a large block of content
• New lines before and after element
• Consumes the whole width available
Examples
• <p> - Paragraph
• <h1> - <h6> Headings
• <form> - Forms
• <div> - div tags
HTML5VideoSeries
Inline Elements
Inline Level Element
• No new lines
• Can be placed aside other elements
• Can not define width
Examples
• <a> - Links
• <strong> and <b> - Bold
• <input /> - Input
• <span> - Span tags
HTML5VideoSeries
Element Attributes
• Most attributes are Name-Value pairs separated with an “=“
• Attributes provide additional information about an element
• Attributes are always specified in the start tag
HTML5VideoSeries
<a href=“http://google.com”>Google</a>
“href” is the name of the attribute of the <a> (link) tag
“http://google.com” is the value of the “href” attribute of the <a> (link)tag
Other Common Attributes
style - Styling can be done via “style” attribute
<p style=“color:red”>This paragraph will be red</p>
Id & class – Specifies identification to an element
<p id=“myparagraph”>This paragraph has an id</p>
title – Adds extra info about the element. Also displayed in
a tooltip in some browsers
<a href=“http://somesite.com” title=“Click to goto somesite”>
This paragraph has an id</a>
HTML5VideoSeries
Singleton Tags
• Singleton tags are tags with no closing tag. Also called void elements
• <img> is a singleton tag “<img></img> is wrong. Only the opening <img> is needed
• Used with “attribute only” tags such as <img>
• Can use a trailing slash (<br />)
<br>
<hr>
<img>
<command>
You can leave off the trailing slash with HTML/HTML5. The trailing slash is
required for XHTML
<br />
<hr />
<img />
<command />
No Trailing Slash With Trailing Slash
HTML5VideoSeries
Using Images In HTML
• Images are defined in html by the <img> tag
• The <img> tag is empty aside from its attributes
• There is no closing tag
<img src=“http://www.somesite.com/images/imagename.jpg”
alt=“A name for my image” />
src is the image tag <img>
source (location) attribute
Notice, no closing tag,
Just an extra “/”
HTML5VideoSeries
alt is the “alternate” attribute
And is required
Separate & Style Your HTML
• You can style your html with the “style” attribute or by using
CSS(Cascading Style Sheets). CSS is preferred but for this
tutorial, we will use the inline “style” attribute.
• Use the <div> or <span> tag to single out blocks of html to
apply style to
<div style=“padding:5px;background-color:black;color:white;”>
<h1>Your Heading</h1>
<p>This is your paragraph</p>
</div>
This will add padding, make the background color black and make
the text white for everything in between the <div> tags
HTML5VideoSeries
Style Attribute Selectors
<p style=“selector:value;”>Some text</p>
The syntax…
color:red;
background-color:blue;
background-image:some-image.jpg
padding:5px
margin:5px
display:block;
border-style:solid;
border-color:black
border-width:1px;
Common Selectors and values…
HTML5VideoSeries
border:solid black 1px;
Shorthand way…

Mais conteúdo relacionado

Mais procurados

Journey To The Front End World - Part1 - The Skeleton
Journey To The Front End World - Part1 - The SkeletonJourney To The Front End World - Part1 - The Skeleton
Journey To The Front End World - Part1 - The SkeletonIrfan Maulana
 
Web Components
Web ComponentsWeb Components
Web ComponentsFITC
 
Lesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLLesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLOlivia Moran
 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18TJ Stalcup
 
Webdev CCI Tel U - Introduction to HTML 5.0
Webdev CCI Tel U - Introduction to HTML 5.0Webdev CCI Tel U - Introduction to HTML 5.0
Webdev CCI Tel U - Introduction to HTML 5.0webdevccitelu
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development BasicsTahir Shahzad
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web DevelopmentRahul Mishra
 
Web Components
Web ComponentsWeb Components
Web ComponentsFITC
 
HTML5 & Front-end overview
HTML5 & Front-end overviewHTML5 & Front-end overview
HTML5 & Front-end overviewAshish Mukherjee
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1TonyC445
 
Web Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTMLWeb Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTMLDer Lo
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointSahil Gandhi
 

Mais procurados (20)

Web 101 intro to html
Web 101  intro to htmlWeb 101  intro to html
Web 101 intro to html
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Journey To The Front End World - Part1 - The Skeleton
Journey To The Front End World - Part1 - The SkeletonJourney To The Front End World - Part1 - The Skeleton
Journey To The Front End World - Part1 - The Skeleton
 
Web Components
Web ComponentsWeb Components
Web Components
 
Lesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLLesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTML
 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18
 
Webdev CCI Tel U - Introduction to HTML 5.0
Webdev CCI Tel U - Introduction to HTML 5.0Webdev CCI Tel U - Introduction to HTML 5.0
Webdev CCI Tel U - Introduction to HTML 5.0
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development Basics
 
Web development basics
Web development basicsWeb development basics
Web development basics
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web Development
 
Web Components
Web ComponentsWeb Components
Web Components
 
HTML5 & Front-end overview
HTML5 & Front-end overviewHTML5 & Front-end overview
HTML5 & Front-end overview
 
Challenges going mobile
Challenges going mobileChallenges going mobile
Challenges going mobile
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Web Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTMLWeb Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTML
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 
Artistic Web Applications - Week3 - Part 1
Artistic Web Applications - Week3 - Part 1Artistic Web Applications - Week3 - Part 1
Artistic Web Applications - Week3 - Part 1
 
Web Development
Web DevelopmentWeb Development
Web Development
 
HTML 5 Tutorial
HTML 5 TutorialHTML 5 Tutorial
HTML 5 Tutorial
 

Destaque

How to connect MapMyFitness App with NewU
How to connect MapMyFitness App with NewUHow to connect MapMyFitness App with NewU
How to connect MapMyFitness App with NewUAbhinav Singh
 
How to Connect Moves App with NewU
How to Connect Moves App with NewUHow to Connect Moves App with NewU
How to Connect Moves App with NewUAbhinav Singh
 
Crowdfunding Project Orenda Network
Crowdfunding Project Orenda NetworkCrowdfunding Project Orenda Network
Crowdfunding Project Orenda NetworkAbhinav Singh
 
Mevsys Data Mining: Knowledge Discovery.
Mevsys Data Mining: Knowledge Discovery.Mevsys Data Mining: Knowledge Discovery.
Mevsys Data Mining: Knowledge Discovery.Mevsys Data Mining
 
Adschool online shop-management
Adschool online shop-managementAdschool online shop-management
Adschool online shop-managementVolodymyr_1
 
Pitch para o SEBRAE Like a Boss 1UP
Pitch para o SEBRAE Like a Boss 1UPPitch para o SEBRAE Like a Boss 1UP
Pitch para o SEBRAE Like a Boss 1UPEdrio Carvalho
 
Mevsys Data Mining: lift for sales campaigns.
Mevsys Data Mining: lift for sales campaigns.Mevsys Data Mining: lift for sales campaigns.
Mevsys Data Mining: lift for sales campaigns.Mevsys Data Mining
 
Canais de marketing
Canais de marketingCanais de marketing
Canais de marketingBYCORK
 
How to Connect with HealthKit App with NewU
How to Connect with HealthKit App with NewUHow to Connect with HealthKit App with NewU
How to Connect with HealthKit App with NewUAbhinav Singh
 
Chapter 01-introduction to om
Chapter 01-introduction to omChapter 01-introduction to om
Chapter 01-introduction to omKaighobadi
 
02 skoring smp m-ts 2014.04.16 oke
02 skoring smp m-ts 2014.04.16 oke02 skoring smp m-ts 2014.04.16 oke
02 skoring smp m-ts 2014.04.16 okeNur Elhuda
 
Курс Управление интернет магазином
Курс Управление интернет магазиномКурс Управление интернет магазином
Курс Управление интернет магазиномVolodymyr_1
 
Mevsys Data Mining: one product per customer.
Mevsys Data Mining: one product per customer.Mevsys Data Mining: one product per customer.
Mevsys Data Mining: one product per customer.Mevsys Data Mining
 
Micro bio logia_bio_medic_bas_2da
Micro bio logia_bio_medic_bas_2daMicro bio logia_bio_medic_bas_2da
Micro bio logia_bio_medic_bas_2daAndressa Benitez
 
Manchester united - Cult Branding
Manchester united - Cult BrandingManchester united - Cult Branding
Manchester united - Cult BrandingAbhinav Singh
 

Destaque (16)

How to connect MapMyFitness App with NewU
How to connect MapMyFitness App with NewUHow to connect MapMyFitness App with NewU
How to connect MapMyFitness App with NewU
 
How to Connect Moves App with NewU
How to Connect Moves App with NewUHow to Connect Moves App with NewU
How to Connect Moves App with NewU
 
Crowdfunding Project Orenda Network
Crowdfunding Project Orenda NetworkCrowdfunding Project Orenda Network
Crowdfunding Project Orenda Network
 
Mevsys Data Mining: Knowledge Discovery.
Mevsys Data Mining: Knowledge Discovery.Mevsys Data Mining: Knowledge Discovery.
Mevsys Data Mining: Knowledge Discovery.
 
Adschool online shop-management
Adschool online shop-managementAdschool online shop-management
Adschool online shop-management
 
Pitch para o SEBRAE Like a Boss 1UP
Pitch para o SEBRAE Like a Boss 1UPPitch para o SEBRAE Like a Boss 1UP
Pitch para o SEBRAE Like a Boss 1UP
 
Mevsys Data Mining: lift for sales campaigns.
Mevsys Data Mining: lift for sales campaigns.Mevsys Data Mining: lift for sales campaigns.
Mevsys Data Mining: lift for sales campaigns.
 
Canais de marketing
Canais de marketingCanais de marketing
Canais de marketing
 
How to Connect with HealthKit App with NewU
How to Connect with HealthKit App with NewUHow to Connect with HealthKit App with NewU
How to Connect with HealthKit App with NewU
 
Chapter 01-introduction to om
Chapter 01-introduction to omChapter 01-introduction to om
Chapter 01-introduction to om
 
Yvp event agenda participant
Yvp event agenda   participantYvp event agenda   participant
Yvp event agenda participant
 
02 skoring smp m-ts 2014.04.16 oke
02 skoring smp m-ts 2014.04.16 oke02 skoring smp m-ts 2014.04.16 oke
02 skoring smp m-ts 2014.04.16 oke
 
Курс Управление интернет магазином
Курс Управление интернет магазиномКурс Управление интернет магазином
Курс Управление интернет магазином
 
Mevsys Data Mining: one product per customer.
Mevsys Data Mining: one product per customer.Mevsys Data Mining: one product per customer.
Mevsys Data Mining: one product per customer.
 
Micro bio logia_bio_medic_bas_2da
Micro bio logia_bio_medic_bas_2daMicro bio logia_bio_medic_bas_2da
Micro bio logia_bio_medic_bas_2da
 
Manchester united - Cult Branding
Manchester united - Cult BrandingManchester united - Cult Branding
Manchester united - Cult Branding
 

Semelhante a Intro to HTML

Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptxmalrad1
 
HTML5 tags.ppt
HTML5 tags.pptHTML5 tags.ppt
HTML5 tags.pptabcxyz1337
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)Ahsan Rahim
 
Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelalShub
 
HTML5 Essential Training
HTML5 Essential TrainingHTML5 Essential Training
HTML5 Essential TrainingKaloyan Kosev
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company indiaJignesh Aakoliya
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmleShikshak
 
Frontend for developers
Frontend for developersFrontend for developers
Frontend for developersHernan Mammana
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)François Massart
 
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptxDESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptxbmit1
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptxStefan Oprea
 
Html&Browser
Html&BrowserHtml&Browser
Html&BrowserAlipay
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02Aditya Varma
 

Semelhante a Intro to HTML (20)

Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
HTML5 tags.ppt
HTML5 tags.pptHTML5 tags.ppt
HTML5 tags.ppt
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Html5 shubelal
Html5 shubelalHtml5 shubelal
Html5 shubelal
 
HTML5 Essential Training
HTML5 Essential TrainingHTML5 Essential Training
HTML5 Essential Training
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company india
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Frontend for developers
Frontend for developersFrontend for developers
Frontend for developers
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)
 
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptxDESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
DESIGN THINKING SYLLABUS MATERIAL NOTES UNIT 1 .pptx
 
Html intro
Html introHtml intro
Html intro
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
An-Introduction-to-HTML
An-Introduction-to-HTMLAn-Introduction-to-HTML
An-Introduction-to-HTML
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Lab_Ex1.pptx
Lab_Ex1.pptxLab_Ex1.pptx
Lab_Ex1.pptx
 
Html&Browser
Html&BrowserHtml&Browser
Html&Browser
 
Html basics
Html basicsHtml basics
Html basics
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02
 

Último

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 

Último (20)

Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
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
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

Intro to HTML

  • 1. Chapter 1: Intro to HTML Section 1: HTML Structure Presentation Section 2: Layout of an HTML File Section 3: Working with Lists & Tables Section 4: HTML Forms & Input HTML5VideoSeries
  • 2. What is HTML? • HTML = Hypertext Markup Language • Language of The Browser • HTML is not a programming language • The World Wide Web Consortium creates the standards of HTML • CSS is used to style HTML pages HTML5VideoSeries
  • 3. HTML Uses Tag Elements <p></p> - Paragraph <h1></h1> - Heading <i></i> - Italic <b></b> - Bold Content is wrapped in an open and closing tag <h1>This is a heading</h1> <p>This is a paragraph</p> HTML5VideoSeries
  • 4. HTML Document Layout <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p>Hello World!</p> </body> </html> HTML5VideoSeries
  • 5. Block Elements Block Level Element • Creates a large block of content • New lines before and after element • Consumes the whole width available Examples • <p> - Paragraph • <h1> - <h6> Headings • <form> - Forms • <div> - div tags HTML5VideoSeries
  • 6. Inline Elements Inline Level Element • No new lines • Can be placed aside other elements • Can not define width Examples • <a> - Links • <strong> and <b> - Bold • <input /> - Input • <span> - Span tags HTML5VideoSeries
  • 7. Element Attributes • Most attributes are Name-Value pairs separated with an “=“ • Attributes provide additional information about an element • Attributes are always specified in the start tag HTML5VideoSeries <a href=“http://google.com”>Google</a> “href” is the name of the attribute of the <a> (link) tag “http://google.com” is the value of the “href” attribute of the <a> (link)tag
  • 8. Other Common Attributes style - Styling can be done via “style” attribute <p style=“color:red”>This paragraph will be red</p> Id & class – Specifies identification to an element <p id=“myparagraph”>This paragraph has an id</p> title – Adds extra info about the element. Also displayed in a tooltip in some browsers <a href=“http://somesite.com” title=“Click to goto somesite”> This paragraph has an id</a> HTML5VideoSeries
  • 9. Singleton Tags • Singleton tags are tags with no closing tag. Also called void elements • <img> is a singleton tag “<img></img> is wrong. Only the opening <img> is needed • Used with “attribute only” tags such as <img> • Can use a trailing slash (<br />) <br> <hr> <img> <command> You can leave off the trailing slash with HTML/HTML5. The trailing slash is required for XHTML <br /> <hr /> <img /> <command /> No Trailing Slash With Trailing Slash HTML5VideoSeries
  • 10. Using Images In HTML • Images are defined in html by the <img> tag • The <img> tag is empty aside from its attributes • There is no closing tag <img src=“http://www.somesite.com/images/imagename.jpg” alt=“A name for my image” /> src is the image tag <img> source (location) attribute Notice, no closing tag, Just an extra “/” HTML5VideoSeries alt is the “alternate” attribute And is required
  • 11. Separate & Style Your HTML • You can style your html with the “style” attribute or by using CSS(Cascading Style Sheets). CSS is preferred but for this tutorial, we will use the inline “style” attribute. • Use the <div> or <span> tag to single out blocks of html to apply style to <div style=“padding:5px;background-color:black;color:white;”> <h1>Your Heading</h1> <p>This is your paragraph</p> </div> This will add padding, make the background color black and make the text white for everything in between the <div> tags HTML5VideoSeries
  • 12. Style Attribute Selectors <p style=“selector:value;”>Some text</p> The syntax… color:red; background-color:blue; background-image:some-image.jpg padding:5px margin:5px display:block; border-style:solid; border-color:black border-width:1px; Common Selectors and values… HTML5VideoSeries border:solid black 1px; Shorthand way…