Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Relation between HTML and URL
What Is the Relation between HTML and URL?
✍: FYIcenter
URL (Uniform Resource Locator) is a compact string representation of the location for a Web document or other resource that is available on the Internet.
The URL of a HTML document is usually the document file name prefixed with the domain name of your Web server and the http protocol name. So as soon as you uploaded a HTML document to a Web server, that document will have a URL to represent its location on the Internet. For example, if you have a Web server with domain name like fyicenter.com, and you have uploaded a HTML document called welcome.html, then the URL of that HTML document on the Internet is http://www.fyicenter.com/welcome.html.
For more informationon URL, please visit http://www.w3.org/Addressing/.
2007-03-03, 5786👍, 0💬
Popular Posts:
1. What is normalization. 2. Difference between procedure and functions. 3. Oracle 9i Vs 10g. 4. how...
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...