📄 html_url.asp@output=print
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HTML URL's</title>
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />
<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</head>
<body>
<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>
<h1>HTML Uniform Resource Locators</h1>
<a href="html_meta.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="html_scripts.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>
<hr />
<h2>HTML Links</h2>
<p>When you click on a link in an HTML document like this: <a target="_blank" href="lastpage.htm">Last
Page</a>, an underlying <a> tag points to a place (an address) on the Web
with an href attribute value like this: <a href="lastpage.htm">Last
Page</a>.</p>
<p>The Last Page link in the example is a link that is relative to the Web site
that you are browsing, and your browser will construct a full Web address like <a href="lastpage.htm" target="_blank">http://www.w3schools.com/html/lastpage.htm</a>
to access the page.</p>
<hr />
<h2>Uniform Resource Locators</h2>
<p>Something called a Uniform Resource Locator (URL) is used to address a
document (or other data) on the
World Wide Web. A full Web address like this: <a href="lastpage.htm" target="_blank">http://www.w3schools.com/html/lastpage.htm</a>
follows these syntax rules:</p>
<p><b>scheme<tt>://</tt>host.domain<tt>:</tt>port<tt>/</tt>path<tt>/</tt>filename</b></p>
The <b>scheme</b> is defining the <b>type</b> of Internet service. The most
common type is <b>http</b>.
<p>The <b>domain</b> is defining the Internet <b>domain name</b> like
w3schools.com.</p>
<p>The <b>host</b> is defining the domain host. If omitted, the default host for
http is <b>www</b>.</p>
<p>The <b>:port</b> is defining the <b>port number </b>at the host. The port
number is normally omitted. The default port number for http is <b>80</b>. </p>
<p>The <b>path</b> is defining a <b>path</b> (a sub directory) at the server.
If the path is omitted, the resource (the document) must be located at the root
directory of the Web site.</p>
<p>The <b>filename</b> is defining the name of a document. The default filename
might be default.asp, or index.html or something else depending on the settings
of the Web server.</p>
<hr />
<h2>URL Schemes</h2>
<p>Some examples of the most common schemes can be found below:</p>
<table class="ex" cellspacing="0" border="1" width="100%">
<tr>
<th align="left" valign="top">Schemes</th>
<th align="left">Access</th>
</tr>
<tr>
<td>file</td>
<td>a file on your local PC</td>
</tr>
<tr>
<td>ftp</td>
<td>a file on an FTP server</td>
</tr>
<tr>
<td>http</td>
<td>a file on a World Wide Web Server</td>
</tr>
<tr>
<td>gopher</td>
<td>a file on a Gopher server</td>
</tr>
<tr>
<td>news</td>
<td>a Usenet newsgroup</td>
</tr>
<tr>
<td>telnet</td>
<td>a Telnet connection</td>
</tr>
<tr>
<td>WAIS</td>
<td>a file on a WAIS server</td>
</tr>
</table>
<br />
<hr />
<h2>Accessing a Newsgroup</h2>
<p>The following HTML code:</p>
<p><a href="news:alt.html">HTML Newsgroup</a></p>
<p>creates a link to a newsgroup like this <a href="news_3Aalt.html">HTML Newsgroup</a>.</p>
<hr />
<h2>Downloading with FTP</h2>
<p>The following HTML code:</p>
<p><a href="ftp://www.w3schools.com/ftp/winzip.exe">Download WinZip</a></p>
<p>creates a link to download a file like this:
<a target="_blank" href="../../ftp@www.w3schools.com/ftp/winzip.exe">Download
WinZip</a>.</p>
<p>(The link doesn't work. Don't try it. It is just an example. W3Schools doesn't
really have an ftp directory.)</p>
<hr />
<h2>Link to your Mail system</h2>
<p>The following HTML code:</p>
<p><a href="mailto:someone@w3schools.com">someone@w3schools.com</a></p>
<p>creates a link to your own mail system like this:</p>
<p><a href="mailto:someone@w3schools.com">someone@w3schools.com</a></p>
<hr />
<a href="html_meta.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="html_scripts.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>
<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -