我是网络开发的新手并且有一个问题。它想在我的页面上添加多个链接到同一个网站。而不是多次将href =“www.mywebsite.com”添加到代码中,无论如何都要将它添加到一个位置并引用它?
例如,这就是我所拥有的。按钮和文本都带到同一个网站。
<div class="col-md-3 head-main ">
<a href="www.mywebsite.com"><i class="fa color-blue "></i><a>
<h3> <a href="www.mywebsite.com" target="_blank">MY WEBSITE</a></h3>
</div>
答案 0 :(得分:1)
如果您要在交付页面时链接到同一网站,则可以使用/
来引用根。
例如:<a href="/">My website</a>
在http://example.com/some/path/page.html
上导致http://example.com/
此外,还有HTML <base>
标记,用于设置页面中所有相对路径的基本URL。
<!DOCTYPE html>
<html>
<head>
<base href="http://example.com" />
</head>
<body>
<a href=".">Goes to http://example.com</a>
<a href="/">Also goes to http://example.com</a>
<a href="#anchor">Goes to http://example.com/#anchor</a>
<a href="some/path/page.html">Goes to http://example.com/some/path/page.html</a>
<a href="https://stackoverflow.com">Goes to https://stackoverflow.com</a>
</body>
</html>
请注意,这将适用于文档使用的所有相对链接,包括脚本和样式表的引用,因此您必须小心。您可能需要查看pitfalls of <base>
before using it。