>在HTML中没有显示结束括号“>”

时间:2014-10-23 05:45:13

标签: html text

这里有两个问题:< / a>没有正确显示,最后一行应为黑色时保持蓝色。我正在尝试将链接元素的整个代码转换为以HTML格式显示的文本形式。

<body>
<p>Where is the closing bracket? <br> 
<font color=blue> &lt;a ID=one-link href=http://CNN.com>CNN</a &gt; </font> or<br>
&lt;a class=many-links href=http://CNN.com>CNN</a&gt; </font><br>
and why is this line also blue?

    

以下是指向jsfiddle的链接。

看看JSfiddle中的着色,看起来好像是将&amp; gt代码与字体混在一起。

此外,在此期间,当我关闭蓝色字体规范时,我也试图弄清楚为什么最后一行也有蓝色文本。我想如果我解决第一个问题,这也会解决。

2 个答案:

答案 0 :(得分:1)

试试这段代码:

<body>
<p>Where is the closing bracket? <br> 
<span style="color:blue"> &lt;a ID=one-link href=http://CNN.com&gt;CNN&lt;/a&gt; </span> or
<br />
&lt;a class=many-links href=http://CNN.com&gt;CNN&lt;/a&gt; </span>
<br />
and why is this line also blue?

您忘记将<替换为&lt;

答案 1 :(得分:0)

你在html中添加了<font color="blue">,这就是为什么它显示为蓝色,而且<font>标记在html5中被折旧,所以删除它,用下面的内容更新你的HTML

<强> HTML

<p>Where is the closing bracket? <br> 

&lt;a ID="one-link" href="http://CNN.com">CNN</a &gt;  or<br>
&lt;a class="many-links" href="http://CNN.com">CNN</a&gt; <br>

and why is this line also blue?
</p>

Fiddle Demo