HTML超链接文本问题

时间:2017-09-04 20:45:31

标签: html hyperlink

我知道这听起来很愚蠢,但我刚刚开始使用HTML并且有一个问题。我正在尝试创建一个超链接,指出“访问Marion Technical College网站以了解有关交互式媒体的更多信息。”应该是超链接的部分是“Marion Technical College”。一切正常,但问题是我的超链接从“访问”开始,一直运行到“学院”的末尾。我需要它才能成为马里恩技术学院。这是我输入的一行:

<h6>Visit the <a href="http://www.mtc.edu"> Marion Technical College</a> Web site to learn more about interactive media.</h6>

它适用于此处,但在Edge或Chrome中打开文件时不会显示。没有浏览器正确显示超链接,但此站点可以。

1 个答案:

答案 0 :(得分:1)

您忘记了该行之前图片上的结束<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/XHTML1-TRANSITIONAL.DTD"> <HTML xmlns="http://www.w3.org/1999/xhtml"> <html> <body> <h1><center>Gary Hicks</center></h1> <hr size=2 color="red" width="50%"> <pre><center>This website contains examples of assignments completed in the Fall of 2017 for OIS1520A</center> <ul> <li><b><i>Week 1</i></b></li> <ol><a href="http://www.mtc.edu"> In-Class Page</a></ol> <ol><a href="http://www.mtc.edu"> Link to Word Document</a></ol> <li>Week 2</li> <li>Week 3</li> <li>Week 4</li> <li>Week 5</li> <li>Week 6</li> <li>Week 7</li> <li>Week 8</li> <li>Week 9</li> <li>Week 10</li> <li>Week 11</li> <li>Week 12</li> <li>Week 13</li> <li>Week 14</li> <li>Week 15</li> <li>Week 16</li> </ol> <center><a href="http://www.mtc.edu" target="_new"><img src="logo.gif"></a></center> <h6>Visit the <a href="http://www.mtc.edu">Marion Technical College</a> Web site to learn more about interactive media.</h6> </body> </html>括号。如果您插入它,它会正确显示:

&#13;
&#13;
<hr
&#13;
&#13;
&#13;

P.S。:hr标签中还有一个<pre>太多了。我也删除了这个片段中的内容。另外,您似乎无法在任何地方关闭userid标记......