SlideShare une entreprise Scribd logo
1  sur  22
Z
Week 8:
Images and Lists
in HTML
Subject Code: COMP121
By: Marlon Jamera
Email: mbjamera@ama.edu.ph
Z
Images and Lists
in HTML
Z
Review: How the Web
Works using HTML
• It contains text files of HTML that
provide information about the page
content structure.
a. Web Search
b. Web Page
c. Web Browser
d. Website Application
Z
Review: How the Web
Works using HTML
• This file must have a .htm or .html file
extension, it can be created with text
editors like notepad, notepad, etc.
a. Text File
b. HTML File
c. XHTML File
d. XML File
Z
Review: How the Web
Works using HTML
• It is always enclosed in angle bracket
(<>) like <html>.
a. Tag
b. Attribute
c. Head
d. Title
Z
Review: How the Web
Works using HTML
• It is part of the main tags that describe
html web page that is to be viewed by a
web browser.
a. <html>
b. <head>
c. <title>
d. <body>
Z
Review: How the Web
Works using HTML
• What kind of tag is this? <h1> This is a
sample text </h1>
a. Hyperlink Tag
b. Image Tag
c. Text Formatting Tag
d. Background Tag
Z
Scope of the Lesson
• Images in HTML
• Miscellaneous Tags
• Creating Lists
• Ordered Lists
• Unordered Lists
• Definition Lists
• Special Characters in HTML
Z
Learning Outcomes
By the end of the lesson, you will be
familiar and know how the website works
using HTML.
• Discuss the basic coding of images in
HTML.
• Understand the coding syntax of creating
lists in HTML.
• Explain thoroughly the coding styles and
special characters in HTML.
Z
Images in HTML
• img stands for “image”. It announces to the
browser that an image will go here on the
page.
• src stands for “source”. This is an attribute,
a command inside a command. It’s telling the
browser where to go to find the image.
• alt stands for “alternate text”. This tells the
browser that if it can’t find the image, then
just displays this text.
Z
Adding Images
• The html code for adding the image is as
simple as one line; the <img> command.
There are over a dozen attributes or options
which may be added to this command, but to
keep things simple we’ll only go over a
couple.
• Inserting an image with <img> tag:
<img src=“logo.png“ alt=“Logo Image”>
Z
Width and Height Attributes
• We can also specify the image’s width and
height. If the width and/or height are not the
actual image dimension then the image will
be scaled to fit.
<img src=“logo.png“ width=“70” height=“30”
alt=“Logo Image”>
Images in HTML
• Inserting an image with <img> tag:
• Image Attributes
<img src="logo.jpeg" alt="logo" />
src Location of image file (relative or absolute)
alt Substitute text for display (e.g. in text mode)
height Number of pixels of the height
width Number of pixels of the width
border Size of border, 0 for no border
Miscellaneous Tags
• <hr />: Draws a horizontal rule (line)
• <center> </center>: Makes the texts center.
• <font> </font>: Designs the texts.
<hr size=“5” width=“70%” />
<center>This is a centered texts.</center>
<font size=“3” color=“blue”>Sample Font</font>
<font size=“+4” color=“blue”>Font+4 </font>
Miscellaneous Tags
Example
<html>
<head>
<title>Miscellaneous Tags Example</title>
</head>
<body>
<hr size="5" width="70%" />
<center>Hello World!</center>
<font size="3" color="blue">Font3</font>
<font size="+4” color="blue">Font+4</font>
</body>
</html>
Ordered Lists: <ol> tag
• Create an ordered list using <ol> </ol>:
• Attribute values for type are 1, A, a, I, or i.
<ol type="1">
<li>Apple</li>
<li>Orange</li>
<li>Grapefruit</li>
</ol>
a. Apple
b. Orange
c. Grapefruit
1. Apple
2. Orange
3. Grapefruit
A. Apple
B. Orange
C. Grapefruit
I. Apple
II. Orange
III. Grapefruit
i. Apple
ii. Orange
iii. Grapefruit
Unordered Lists: <ul> tag
• Create an ordered list using <ul> </ul>:
• Attribute values for type are disc, circle & square
<ul type="disk">
<li>Apple</li>
<li>Orange</li>
<li>Grapefruit</li>
</ul>
• Apple
• Orange
• Pear
o Apple
o Orange
o Pear
 Apple
 Orange
 Pear
Definition Lists: <dl> tag
• Create definition list using <dl> tag:
• Pairs of text and associated definitions; text is
in <dt> tag, definition in <dd> tag.
• Renders without bullets
• Definition is indented
<dl>
<dt>HTML</dt>
<dd>A markup language …</dd>
<dt>CSS</dt>
<dd>Language used to …</dd>
</dl>
Lists Example
<ol type="1">
<li>Apple</li>
<li>Orange</li>
<li>Grapefruit</li>
</ol>
<ul type="disc">
<li>Apple</li>
<li>Orange</li>
<li>Grapefruit</li>
</ul>
<dl>
<dt>HTML</dt>
<dd>A markup lang…</dd>
</dl>
HTML Special Characters
£&pound;British Pound
€&#8364;Euro
"&quot;Quotation Mark
¥&yen;Japanese Yen
—&mdash;Em Dash
&nbsp;Non-breaking Space
&&amp;Ampersand
>&gt;Greater Than
<&lt;Less Than
™&trade;Trademark Sign
®&reg;Registered Trademark Sign
©&copy;Copyright Sign
SymbolHTML EntitySymbol Name
Special Characters Example
<p>[&gt;&gt;&nbsp;&nbsp;Welcome
&nbsp;&nbsp;&lt;&lt;]</p>
<p>&#9658;I have following cards:
A&#9827;, K&#9830; and 9&#9829;.</p>
<p>&#9658;I prefer hard rock &#9835;
music &#9835;</p>
<p>&copy; 2015 by Svetlin Nakov &amp; his team</p>
<p>AMA Computer College</p>
Z
Let’s call it a day,
Thank you!

Contenu connexe

Tendances

Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
Aarti P
 

Tendances (20)

HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
 
Html frames
Html framesHtml frames
Html frames
 
Html ppt
Html pptHtml ppt
Html ppt
 
CSS
CSSCSS
CSS
 
Html
HtmlHtml
Html
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Html-list
Html-listHtml-list
Html-list
 
HTML Marquee
HTML MarqueeHTML Marquee
HTML Marquee
 
HTML Tags
HTML Tags HTML Tags
HTML Tags
 
Html list
Html listHtml list
Html list
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
XSLT
XSLTXSLT
XSLT
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Html links
Html linksHtml links
Html links
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
 

En vedette

Ordered & unordered list in MS Frontpage 2003
Ordered & unordered list in MS Frontpage 2003Ordered & unordered list in MS Frontpage 2003
Ordered & unordered list in MS Frontpage 2003
Ann Alcid
 
Document type definition
Document type definitionDocument type definition
Document type definition
Raghu nath
 

En vedette (20)

Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML Lists
 
Ordered lists
Ordered listsOrdered lists
Ordered lists
 
List and images in html
List and images in htmlList and images in html
List and images in html
 
Html ordered lists
Html ordered listsHtml ordered lists
Html ordered lists
 
Ordered & unordered list in MS Frontpage 2003
Ordered & unordered list in MS Frontpage 2003Ordered & unordered list in MS Frontpage 2003
Ordered & unordered list in MS Frontpage 2003
 
HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - Comments
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgrounds
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML
HTMLHTML
HTML
 
Html hyperlinks
Html hyperlinksHtml hyperlinks
Html hyperlinks
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPage
 
Server vs Client in real life and in programming world
Server vs Client in real life and in programming worldServer vs Client in real life and in programming world
Server vs Client in real life and in programming world
 
Tablas html
Tablas htmlTablas html
Tablas html
 
Html links
Html linksHtml links
Html links
 
Document type definition
Document type definitionDocument type definition
Document type definition
 
Links in Html
Links in HtmlLinks in Html
Links in Html
 
XML Schema
XML SchemaXML Schema
XML Schema
 

Similaire à Images and Lists in HTML

web development.pdf
web development.pdfweb development.pdf
web development.pdf
BagHarki
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
Lusi39
 

Similaire à Images and Lists in HTML (20)

html
htmlhtml
html
 
HTML Coding
HTML CodingHTML Coding
HTML Coding
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
BASIC HTML
BASIC HTMLBASIC HTML
BASIC HTML
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
 
Html cia
Html ciaHtml cia
Html cia
 
HTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxHTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptx
 
Basics ogHtml
Basics ogHtml Basics ogHtml
Basics ogHtml
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTML
 
HTML_css_web__tech___nology_______________.pptx
HTML_css_web__tech___nology_______________.pptxHTML_css_web__tech___nology_______________.pptx
HTML_css_web__tech___nology_______________.pptx
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJSBasic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
 
LS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptxLS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptx
 
FFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTMLFFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTML
 
Web engineering and Technology
Web engineering and TechnologyWeb engineering and Technology
Web engineering and Technology
 
HTML Basics
HTML BasicsHTML Basics
HTML Basics
 
Lab1_HTML.pptx
Lab1_HTML.pptxLab1_HTML.pptx
Lab1_HTML.pptx
 
HTML-Basic.pptx
HTML-Basic.pptxHTML-Basic.pptx
HTML-Basic.pptx
 
BITM3730 9-12.pptx
BITM3730 9-12.pptxBITM3730 9-12.pptx
BITM3730 9-12.pptx
 
Html intro
Html introHtml intro
Html intro
 

Plus de Marlon Jamera

Plus de Marlon Jamera (16)

JavaScript Conditional Statements
JavaScript Conditional StatementsJavaScript Conditional Statements
JavaScript Conditional Statements
 
Tables and Forms in HTML
Tables and Forms in HTMLTables and Forms in HTML
Tables and Forms in HTML
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
ICT in Society
ICT in SocietyICT in Society
ICT in Society
 
ICT in Business
ICT in BusinessICT in Business
ICT in Business
 
The Future of ICT
The Future of ICTThe Future of ICT
The Future of ICT
 
Trends in the Database
Trends in the DatabaseTrends in the Database
Trends in the Database
 
Trends in Database Management
Trends in Database ManagementTrends in Database Management
Trends in Database Management
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
Website Basics and Categories
Website Basics and CategoriesWebsite Basics and Categories
Website Basics and Categories
 
Trends In Telecommunications
Trends In TelecommunicationsTrends In Telecommunications
Trends In Telecommunications
 
Software Trends
Software TrendsSoftware Trends
Software Trends
 
Hardware Technology Trends
Hardware Technology TrendsHardware Technology Trends
Hardware Technology Trends
 
Familiarization with Web Tools
Familiarization with Web ToolsFamiliarization with Web Tools
Familiarization with Web Tools
 
Internet Applications
Internet ApplicationsInternet Applications
Internet Applications
 
Introduction to World Wide Web
Introduction to World Wide WebIntroduction to World Wide Web
Introduction to World Wide Web
 

Dernier

( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
nilamkumrai
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 

Dernier (20)

All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
VVIP Pune Call Girls Mohammadwadi WhatSapp Number 8005736733 With Elite Staff...
 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
 
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft DatingDubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
Dubai Call Girls Milky O525547819 Call Girls Dubai Soft Dating
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 

Images and Lists in HTML

  • 1. Z Week 8: Images and Lists in HTML Subject Code: COMP121 By: Marlon Jamera Email: mbjamera@ama.edu.ph
  • 3. Z Review: How the Web Works using HTML • It contains text files of HTML that provide information about the page content structure. a. Web Search b. Web Page c. Web Browser d. Website Application
  • 4. Z Review: How the Web Works using HTML • This file must have a .htm or .html file extension, it can be created with text editors like notepad, notepad, etc. a. Text File b. HTML File c. XHTML File d. XML File
  • 5. Z Review: How the Web Works using HTML • It is always enclosed in angle bracket (<>) like <html>. a. Tag b. Attribute c. Head d. Title
  • 6. Z Review: How the Web Works using HTML • It is part of the main tags that describe html web page that is to be viewed by a web browser. a. <html> b. <head> c. <title> d. <body>
  • 7. Z Review: How the Web Works using HTML • What kind of tag is this? <h1> This is a sample text </h1> a. Hyperlink Tag b. Image Tag c. Text Formatting Tag d. Background Tag
  • 8. Z Scope of the Lesson • Images in HTML • Miscellaneous Tags • Creating Lists • Ordered Lists • Unordered Lists • Definition Lists • Special Characters in HTML
  • 9. Z Learning Outcomes By the end of the lesson, you will be familiar and know how the website works using HTML. • Discuss the basic coding of images in HTML. • Understand the coding syntax of creating lists in HTML. • Explain thoroughly the coding styles and special characters in HTML.
  • 10. Z Images in HTML • img stands for “image”. It announces to the browser that an image will go here on the page. • src stands for “source”. This is an attribute, a command inside a command. It’s telling the browser where to go to find the image. • alt stands for “alternate text”. This tells the browser that if it can’t find the image, then just displays this text.
  • 11. Z Adding Images • The html code for adding the image is as simple as one line; the <img> command. There are over a dozen attributes or options which may be added to this command, but to keep things simple we’ll only go over a couple. • Inserting an image with <img> tag: <img src=“logo.png“ alt=“Logo Image”>
  • 12. Z Width and Height Attributes • We can also specify the image’s width and height. If the width and/or height are not the actual image dimension then the image will be scaled to fit. <img src=“logo.png“ width=“70” height=“30” alt=“Logo Image”>
  • 13. Images in HTML • Inserting an image with <img> tag: • Image Attributes <img src="logo.jpeg" alt="logo" /> src Location of image file (relative or absolute) alt Substitute text for display (e.g. in text mode) height Number of pixels of the height width Number of pixels of the width border Size of border, 0 for no border
  • 14. Miscellaneous Tags • <hr />: Draws a horizontal rule (line) • <center> </center>: Makes the texts center. • <font> </font>: Designs the texts. <hr size=“5” width=“70%” /> <center>This is a centered texts.</center> <font size=“3” color=“blue”>Sample Font</font> <font size=“+4” color=“blue”>Font+4 </font>
  • 15. Miscellaneous Tags Example <html> <head> <title>Miscellaneous Tags Example</title> </head> <body> <hr size="5" width="70%" /> <center>Hello World!</center> <font size="3" color="blue">Font3</font> <font size="+4” color="blue">Font+4</font> </body> </html>
  • 16. Ordered Lists: <ol> tag • Create an ordered list using <ol> </ol>: • Attribute values for type are 1, A, a, I, or i. <ol type="1"> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ol> a. Apple b. Orange c. Grapefruit 1. Apple 2. Orange 3. Grapefruit A. Apple B. Orange C. Grapefruit I. Apple II. Orange III. Grapefruit i. Apple ii. Orange iii. Grapefruit
  • 17. Unordered Lists: <ul> tag • Create an ordered list using <ul> </ul>: • Attribute values for type are disc, circle & square <ul type="disk"> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ul> • Apple • Orange • Pear o Apple o Orange o Pear  Apple  Orange  Pear
  • 18. Definition Lists: <dl> tag • Create definition list using <dl> tag: • Pairs of text and associated definitions; text is in <dt> tag, definition in <dd> tag. • Renders without bullets • Definition is indented <dl> <dt>HTML</dt> <dd>A markup language …</dd> <dt>CSS</dt> <dd>Language used to …</dd> </dl>
  • 19. Lists Example <ol type="1"> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ol> <ul type="disc"> <li>Apple</li> <li>Orange</li> <li>Grapefruit</li> </ul> <dl> <dt>HTML</dt> <dd>A markup lang…</dd> </dl>
  • 20. HTML Special Characters £&pound;British Pound €&#8364;Euro "&quot;Quotation Mark ¥&yen;Japanese Yen —&mdash;Em Dash &nbsp;Non-breaking Space &&amp;Ampersand >&gt;Greater Than <&lt;Less Than ™&trade;Trademark Sign ®&reg;Registered Trademark Sign ©&copy;Copyright Sign SymbolHTML EntitySymbol Name
  • 21. Special Characters Example <p>[&gt;&gt;&nbsp;&nbsp;Welcome &nbsp;&nbsp;&lt;&lt;]</p> <p>&#9658;I have following cards: A&#9827;, K&#9830; and 9&#9829;.</p> <p>&#9658;I prefer hard rock &#9835; music &#9835;</p> <p>&copy; 2015 by Svetlin Nakov &amp; his team</p> <p>AMA Computer College</p>
  • 22. Z Let’s call it a day, Thank you!

Notes de l'éditeur

  1. Left angle bracket < Right angle bracket >
  2. 07/16/96
  3. 07/16/96
  4. 07/16/96
  5. 07/16/96
  6. 07/16/96
  7. 07/16/96
  8. 07/16/96
  9. 07/16/96
  10. 07/16/96
  11. https://youtu.be/uBllsVFsUuA