Monday, June 17, 2019

The Entities in html

The Entities in html
HTML Entities
* The characters reserved in HTML they must be replaced with 
   entities characters.
* The character was not present on your keyboard they can also be
   replaced by entities.
HTML Entities
* There are some characters which are reserved in HTML.
If you use the greater then (>) or less than (<) sign in your text, 
    the browser was might mix them with tags.
*  The entities character are used to display the character reserved
    in HTML. More information please click here.
  

Tuesday, June 4, 2019

The file paths in html

The file paths in html
                     HTML FILE PATHS 

  Path                                                    Description 
* <img src="pitcure.jpg">                       pitcure.jpg is located in the
                                                                 same folder as the current
                                                                 page. 

* <img src="images/pitcures.jpg">         pitcure.jpg is located in the
                                                                 image folder as the current
                                                                 folder.

* <img src="/images/pitcure.jpg">          pitcure.jpg is located at
                                                                 the root of the current
                                                                 page.

*<img src="../pitcure.jpg">                     pitcure.jpg is located in the
                                                                 same folder as the current
                                                                 page.

More information please click here.


  

Monday, June 3, 2019

The url encoding in html

The url encoding in html
HTML UNIFORM RESOURCE LOCATORS 
* THE NAME OF URL IS A ANOTHER WORD FOR WEB
   ADDRESS.
* THE NAME OF URL CAN BE COMPOSED OF WORDS
   (HTML COMMANDS.COM), OR AN INTERNET PROTOCOL
   (IP) ADDRESS (192.68.20.50).
* MOST OF PEOPLE ENTER THE NAME WHEN SUFFERING,
   BECAUSE NAME ARE EASIER TO REMEMBERS THAN
   NUMBERS. MORE INFORMATION PLEASE CLICK HERE.

Saturday, June 1, 2019

The charset in html

The charset in html
HTML INCODING (CHARACTER SETS) 
* TO DISPLAY AN HTML PAGE CORRECTLY, A WEB
   BROWSER MUST KNOW WHICH CHARACTER SET
   (CHARACTER ENCODING) TO USE. 

WHAT IS CHARACTER ENCODING ? 
*  ASCII WAS THE FIRST CHARACTER ENCODING STANDARD (ALSO CALLED CHARACTER DET) ASCII DEFINED 128 DIFFERENT ALPHANUMERIN CHARACTER THAT CAN BE USED ON THE INTERNET NUMBERS : (0-9) ENGLISH LETTERS (A-Z) ARE SOME SPECIAL CHARACTER LIKE : ! @ # $ % ^ & * ( ).
* ISO 8859-1EAS WAS THE DEFAULT CHARACTER SET OF HTML. THIS CHARACTER SET ALSO SUPPORTED 256 DIFFERENT CHARACTER CODES. MORE INFORMATION PLEASE CLICK HERE.