我无法 link html 文件 html
I'm not able to link html file in html
</head>
<body>
<h1>
learning web dev
</h1>
<hr>
<a href="http://www.google.com/" target=blank > Google </a>
<a herf="index2.html">next page</a>
</body>
</html>
the google link works but next page link just showing text
您的标记中有错字(herf 而不是 href)
herf 应该是 href
这是工作代码
<a href="http://www.google.com/" target=blank > Google </a>
<a href="index2.html">next page</a>
您的代码中似乎有一个拼写错误,应该是 href
,另外请检查您的 index2.html
文件是否与现有的 html 在同一文件夹中,如果如果不是,请在 href
属性中为其提供路径。
<html>
</head>
<body>
<h1>
learning web dev
</h1>
<hr>
<a href="http://www.google.com/" target=blank > Google </a>
<a href="index2.html">next page</a>
</body>
</html>
</head>
<body>
<h1>
learning web dev
</h1>
<hr>
<a href="http://www.google.com/" target=blank > Google </a>
<a herf="index2.html">next page</a>
</body>
</html>
the google link works but next page link just showing text
您的标记中有错字(herf 而不是 href)
herf 应该是 href 这是工作代码
<a href="http://www.google.com/" target=blank > Google </a>
<a href="index2.html">next page</a>
您的代码中似乎有一个拼写错误,应该是 href
,另外请检查您的 index2.html
文件是否与现有的 html 在同一文件夹中,如果如果不是,请在 href
属性中为其提供路径。
<html>
</head>
<body>
<h1>
learning web dev
</h1>
<hr>
<a href="http://www.google.com/" target=blank > Google </a>
<a href="index2.html">next page</a>
</body>
</html>