SlideShare a Scribd company logo
1 of 19
Download to read offline
HTML
IFRAMES, COLORS, ENTITIES, URL
HTML IFRAMES
An iframe is used to display a web page within a web page.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML IFRAMES
Syntax for adding an iframe:
The URL points to the location of the separate page.
Apep Kamaludin, MT. | http://www.w3schools.com
<iframe src="URL"></iframe>
HTML IFRAMES
Iframe - Set Height and Width
The height and width attributes are used to specify the height and
width of the iframe.
The attribute values are specified in pixels by default, but they can
also be in percent (like "80%").
Example :
Apep Kamaludin, MT. | http://www.w3schools.com
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
HTML IFRAMES
Iframe - Remove the Border
The frameborder attribute specifies whether or not to display a
border around the iframe.
Set the attribute value to "0" to remove the border:
Example :
Apep Kamaludin, MT. | http://www.w3schools.com
<iframe src="demo_iframe.htm" frameborder="0"></iframe>
HTML IFRAMES
Use iframe as a Target for a Link
An iframe can be used as the target frame for a link.
The target attribute of a link must refer to the name attribute of the
iframe.
Example :
Apep Kamaludin, MT. | http://www.w3schools.com
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.w3schools.com" target="iframe_a">
W3Schools.com</a></p>
HTML COLORS
Colors are displayed combining RED, GREEN, and BLUE light.
Color Values
HTML colors are defined using a hexadecimal notation (HEX) for
the combination of Red, Green, and Blue color values (RGB).
The lowest value that can be given to one of the light sources is 0
(in HEX: 00). The highest value is 255 (in HEX: FF).
HEX values are specified as 3 pairs of two-digit numbers, starting
with a # sign.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML COLORS
Apep Kamaludin, MT. | http://www.w3schools.com
HTML COLORS
Color Names Supported by All Browsers
147 color names are defined in the HTML and CSS color
specification (16 basic color names plus 130 more). The table
below lists them all, along with their hexadecimal values.
Tip: The 16 basic color names are: aqua, black, blue, fuchsia,
gray, green, lime, maroon, navy, olive, purple, red, silver, teal,
white, and yellow.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML ENTITIES
Apep Kamaludin, MT. | http://www.w3schools.com
Reserved characters in HTML must be replaced with character
entities.
HTML Entities
Some characters are reserved in HTML.
It is not possible to use the less than (<) or greater than (>) signs
in your text, because the browser will mix them with tags.
To actually display reserved characters, we must use character
entities in the HTML source code.
HTML ENTITIES
A character entity looks like this:
To display a less than sign we must write: &lt; or &#60;
Tip: The advantage of using an entity name, instead of a number,
is that the name is easier to remember. However, the
disadvantage is that browsers may not support all entity names
(the support for entity numbers is very good).
Apep Kamaludin, MT. | http://www.w3schools.com
&entity_name;
OR
&#entity_number;
HTML ENTITIES
Non-breaking Space
A common character entity used in HTML is the non-breaking
space (&nbsp;).
Browsers will always truncate spaces in HTML pages. If you write
10 spaces in your text, the browser will remove 9 of them, before
displaying the page. To add spaces to your text, you can use the
&nbsp; character entity.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML ENTITIES
HTML Useful Character Entities
Note: Entity names are case sensitive!
Apep Kamaludin, MT. | http://www.w3schools.com
Result Description Entity Name Entity Number
non-breaking space &nbsp; &#160;
< less than &lt; &#60;
> greater than &gt; &#62;
& ampersand &amp; &#38;
¢ cent &cent; &#162;
£ pound &pound; &#163;
¥ yen &yen; &#165;
© copyright &copy; &#169;
® registered trademark &reg; &#174;
™ trademark &trade; &#8482;
HTML
UNIFORM RESOURCE LOCATORS
A URL is another word for a web address.
A URL can be composed of words, such as "w3schools.com", or
an Internet Protocol (IP) address: 192.68.20.50. Most people
enter the name of the website when surfing, because names are
easier to remember than numbers.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML
UNIFORM RESOURCE LOCATORS
URL - Uniform Resource Locator
Web browsers request pages from web servers by using a URL.
When you click on a link in an HTML page, an underlying <a> tag
points to an address on the world wide web.
A Uniform Resource Locator (URL) is used to address a
document (or other data) on the world wide web.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML
UNIFORM RESOURCE LOCATORS
A web address, like this: http://www.w3schools.com/html/default.asp follows
these syntax rules:
Explanation:
scheme - defines the type of Internet service. The most common type is http
host - defines the domain host (the default host for http is www)
domain - defines the Internet domain name, like w3schools.com
:port - defines the port number at the host (the default port number for http is
80)
path - defines a path at the server (If omitted, the document must be stored
at the root directory of the web site)
filename - defines the name of a document/resource
Apep Kamaludin, MT. | http://www.w3schools.com
scheme://host.domain:port/path/filename
HTML
UNIFORM RESOURCE LOCATORS
Common URL Schemes
The table below lists some common schemes:
Apep Kamaludin, MT. | http://www.w3schools.com
Scheme Short for.... Which pages will the scheme be used for...
http
HyperText Transfer
Protocol
Common web pages starts with http://. Not
encrypted
https
Secure HyperText
Transfer Protocol
Secure web pages. All information exchanged
are encrypted
ftp File Transfer Protocol
For downloading or uploading files to a
website. Useful for domain maintenance
file A file on your computer
HTML
UNIFORM RESOURCE LOCATORS
URL Encoding
URLs can only be sent over the Internet using the ASCII
character-set.
Since URLs often contain characters outside the ASCII set, the
URL has to be converted into a valid ASCII format.
URL encoding converts characters into a format that can be
transmitted over the Internet.
URL encoding replaces non ASCII characters with a "%" followed
by two hexadecimal digits.
URLs cannot contain spaces. URL encoding normally replaces a
space with a + sign.
Apep Kamaludin, MT. | http://www.w3schools.com
HTML
UNIFORM RESOURCE LOCATORS
URL Encoding Examples
Apep Kamaludin, MT. | http://www.w3schools.com
Character URL-encoding
€ %80
£ %A3
© %A9
® %AE
À %C0
Á %C1
 %C2
à %C3
Ä %C4
Å %C5

More Related Content

Similar to html 4 (20)

week 3 slides.pptx
week 3 slides.pptxweek 3 slides.pptx
week 3 slides.pptx
 
belajar HTML
belajar HTML belajar HTML
belajar HTML
 
Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web Design
 
CSS ppt
CSS pptCSS ppt
CSS ppt
 
Intro To HTML
Intro To HTMLIntro To HTML
Intro To HTML
 
331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheet331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheet
 
1. HTML
1. HTML1. HTML
1. HTML
 
Ssi
SsiSsi
Ssi
 
Hypertext_markup_language
Hypertext_markup_languageHypertext_markup_language
Hypertext_markup_language
 
Html introduction
Html introductionHtml introduction
Html introduction
 
14600 introduction to web design
14600 introduction to web design14600 introduction to web design
14600 introduction to web design
 
Php Mysql Feedrss
Php Mysql FeedrssPhp Mysql Feedrss
Php Mysql Feedrss
 
Babitha5.php
Babitha5.phpBabitha5.php
Babitha5.php
 
Php
PhpPhp
Php
 
Babitha5.php
Babitha5.phpBabitha5.php
Babitha5.php
 
Babitha5.php
Babitha5.phpBabitha5.php
Babitha5.php
 
5. Frames & Forms.pdf
5. Frames & Forms.pdf5. Frames & Forms.pdf
5. Frames & Forms.pdf
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web design
 
html for beginners
html for beginnershtml for beginners
html for beginners
 
Lecture-2.pptx
Lecture-2.pptxLecture-2.pptx
Lecture-2.pptx
 

More from Universitas Pendidikan Indonesia (7)

Perencanaan sumberdaya manusia
Perencanaan sumberdaya manusiaPerencanaan sumberdaya manusia
Perencanaan sumberdaya manusia
 
Lm301 t05 12-4563_upaya preservasi terhadap data laptop pribadi
Lm301 t05 12-4563_upaya preservasi terhadap data laptop pribadiLm301 t05 12-4563_upaya preservasi terhadap data laptop pribadi
Lm301 t05 12-4563_upaya preservasi terhadap data laptop pribadi
 
Gaya Kepemimpinan
Gaya KepemimpinanGaya Kepemimpinan
Gaya Kepemimpinan
 
3. tipe dan fungsi kepemimpinan!
3. tipe dan fungsi kepemimpinan!3. tipe dan fungsi kepemimpinan!
3. tipe dan fungsi kepemimpinan!
 
bahaya banjir di indonesia
bahaya banjir di indonesia bahaya banjir di indonesia
bahaya banjir di indonesia
 
belajar HTML 3
belajar HTML 3belajar HTML 3
belajar HTML 3
 
belajar HTML 1
belajar HTML 1belajar HTML 1
belajar HTML 1
 

Recently uploaded

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
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).pptxVishalSingh1417
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
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...christianmathematics
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterMateoGardella
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
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 ...EduSkills OECD
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
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 writingTeacherCyreneCayanan
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Recently uploaded (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
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
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
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...
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
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 ...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

html 4

  • 2. HTML IFRAMES An iframe is used to display a web page within a web page. Apep Kamaludin, MT. | http://www.w3schools.com
  • 3. HTML IFRAMES Syntax for adding an iframe: The URL points to the location of the separate page. Apep Kamaludin, MT. | http://www.w3schools.com <iframe src="URL"></iframe>
  • 4. HTML IFRAMES Iframe - Set Height and Width The height and width attributes are used to specify the height and width of the iframe. The attribute values are specified in pixels by default, but they can also be in percent (like "80%"). Example : Apep Kamaludin, MT. | http://www.w3schools.com <iframe src="demo_iframe.htm" width="200" height="200"></iframe>
  • 5. HTML IFRAMES Iframe - Remove the Border The frameborder attribute specifies whether or not to display a border around the iframe. Set the attribute value to "0" to remove the border: Example : Apep Kamaludin, MT. | http://www.w3schools.com <iframe src="demo_iframe.htm" frameborder="0"></iframe>
  • 6. HTML IFRAMES Use iframe as a Target for a Link An iframe can be used as the target frame for a link. The target attribute of a link must refer to the name attribute of the iframe. Example : Apep Kamaludin, MT. | http://www.w3schools.com <iframe src="demo_iframe.htm" name="iframe_a"></iframe> <p><a href="http://www.w3schools.com" target="iframe_a"> W3Schools.com</a></p>
  • 7. HTML COLORS Colors are displayed combining RED, GREEN, and BLUE light. Color Values HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one of the light sources is 0 (in HEX: 00). The highest value is 255 (in HEX: FF). HEX values are specified as 3 pairs of two-digit numbers, starting with a # sign. Apep Kamaludin, MT. | http://www.w3schools.com
  • 8. HTML COLORS Apep Kamaludin, MT. | http://www.w3schools.com
  • 9. HTML COLORS Color Names Supported by All Browsers 147 color names are defined in the HTML and CSS color specification (16 basic color names plus 130 more). The table below lists them all, along with their hexadecimal values. Tip: The 16 basic color names are: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. Apep Kamaludin, MT. | http://www.w3schools.com
  • 10. HTML ENTITIES Apep Kamaludin, MT. | http://www.w3schools.com Reserved characters in HTML must be replaced with character entities. HTML Entities Some characters are reserved in HTML. It is not possible to use the less than (<) or greater than (>) signs in your text, because the browser will mix them with tags. To actually display reserved characters, we must use character entities in the HTML source code.
  • 11. HTML ENTITIES A character entity looks like this: To display a less than sign we must write: &lt; or &#60; Tip: The advantage of using an entity name, instead of a number, is that the name is easier to remember. However, the disadvantage is that browsers may not support all entity names (the support for entity numbers is very good). Apep Kamaludin, MT. | http://www.w3schools.com &entity_name; OR &#entity_number;
  • 12. HTML ENTITIES Non-breaking Space A common character entity used in HTML is the non-breaking space (&nbsp;). Browsers will always truncate spaces in HTML pages. If you write 10 spaces in your text, the browser will remove 9 of them, before displaying the page. To add spaces to your text, you can use the &nbsp; character entity. Apep Kamaludin, MT. | http://www.w3schools.com
  • 13. HTML ENTITIES HTML Useful Character Entities Note: Entity names are case sensitive! Apep Kamaludin, MT. | http://www.w3schools.com Result Description Entity Name Entity Number non-breaking space &nbsp; &#160; < less than &lt; &#60; > greater than &gt; &#62; & ampersand &amp; &#38; ¢ cent &cent; &#162; £ pound &pound; &#163; ¥ yen &yen; &#165; © copyright &copy; &#169; ® registered trademark &reg; &#174; ™ trademark &trade; &#8482;
  • 14. HTML UNIFORM RESOURCE LOCATORS A URL is another word for a web address. A URL can be composed of words, such as "w3schools.com", or an Internet Protocol (IP) address: 192.68.20.50. Most people enter the name of the website when surfing, because names are easier to remember than numbers. Apep Kamaludin, MT. | http://www.w3schools.com
  • 15. HTML UNIFORM RESOURCE LOCATORS URL - Uniform Resource Locator Web browsers request pages from web servers by using a URL. When you click on a link in an HTML page, an underlying <a> tag points to an address on the world wide web. A Uniform Resource Locator (URL) is used to address a document (or other data) on the world wide web. Apep Kamaludin, MT. | http://www.w3schools.com
  • 16. HTML UNIFORM RESOURCE LOCATORS A web address, like this: http://www.w3schools.com/html/default.asp follows these syntax rules: Explanation: scheme - defines the type of Internet service. The most common type is http host - defines the domain host (the default host for http is www) domain - defines the Internet domain name, like w3schools.com :port - defines the port number at the host (the default port number for http is 80) path - defines a path at the server (If omitted, the document must be stored at the root directory of the web site) filename - defines the name of a document/resource Apep Kamaludin, MT. | http://www.w3schools.com scheme://host.domain:port/path/filename
  • 17. HTML UNIFORM RESOURCE LOCATORS Common URL Schemes The table below lists some common schemes: Apep Kamaludin, MT. | http://www.w3schools.com Scheme Short for.... Which pages will the scheme be used for... http HyperText Transfer Protocol Common web pages starts with http://. Not encrypted https Secure HyperText Transfer Protocol Secure web pages. All information exchanged are encrypted ftp File Transfer Protocol For downloading or uploading files to a website. Useful for domain maintenance file A file on your computer
  • 18. HTML UNIFORM RESOURCE LOCATORS URL Encoding URLs can only be sent over the Internet using the ASCII character-set. Since URLs often contain characters outside the ASCII set, the URL has to be converted into a valid ASCII format. URL encoding converts characters into a format that can be transmitted over the Internet. URL encoding replaces non ASCII characters with a "%" followed by two hexadecimal digits. URLs cannot contain spaces. URL encoding normally replaces a space with a + sign. Apep Kamaludin, MT. | http://www.w3schools.com
  • 19. HTML UNIFORM RESOURCE LOCATORS URL Encoding Examples Apep Kamaludin, MT. | http://www.w3schools.com Character URL-encoding € %80 £ %A3 © %A9 ® %AE À %C0 Á %C1 Â %C2 Ã %C3 Ä %C4 Å %C5