Uniform Resource locator in HTML
Uniform Resource locator in HTML:
The URL is the complete address of the web page or location on the server. It can be in the form of an IP address or address like www.dreamzdevelopers.com.
You are accessing the side because the browser sends the request and the server accepts it, and then it gives the specific information.
Syntax:
Scheme://prefix.domain.:port/path/filename
Description:
The scheme defines the type of internet service you are using i.e. HTTP or HTTPS. The prefix is nothing but www i.e. World Wide Web. The domain is the name of your website like dreamzdevelopers.com, Port is the port number by default it is 80. The path is the location at sever or root directory. The file name is the name of the document or goal file.
ASCII Encoding character:
| Character | From Windows-1252 | From UTF-8 |
|---|---|---|
| € | %80 | %E2%82%AC |
| £ | %A3 | %C2%A3 |
| © | %A9 | %C2%A9 |
| ® | %AE | %C2%AE |
| À | %C0 | %C3%80 |
| Á | %C1 | %C3%81 |
| Â | %C2 | %C3%82 |
| Ã | %C3 | %C3%83 |
| Ä | %C4 | %C3%84 |
| Å | %C5 | %C3%85 |
