出于某种原因,我的href链接未显示在页面上。这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title> MY FIRST WEB PAGE </title>
</head>
<body>
<h1> This is my first Web Page </h1>
<h2> What this is</h2>
<p> <strong>RUSH </strong> is my <em>favorite</em> rock group </p>
<h2> Why this is</h2>
<p> To learn HTML </p>
<ul>
<li> To learn HTML</li>
<li></li>
<li> To show off </li>
<ol>
<li> To my boss </li>
<li> To my friends </li>
<li> To my cat </li>
</ol>
<li> Because I have fallen in love with my computer
and I want to give her some HTML loving </li>
</ul>
<h2> where to find tutorial</h2>
<p><a href="http://www.htmldog.com”> HTML Dog </a></p>
</body>
</html>
有什么想法吗?我正在使用OSX 10.11
答案 0 :(得分:3)
你有一个结束的智能报价而不是href中的标准双引号
答案 1 :(得分:0)
如果有人不知道智能引用是什么:
<p><a href="http://www.htmldog.com”> HTML Dog </a></p>
到
<p><a href="http://www.htmldog.com"> HTML Dog </a></p>
而解释 - 你的href周围的引用是错误的(具体而言 - 最后的引用是错误的) - 如其他答案中所述,你可以通过关注this guide来关闭它们。