如何在Html页面上将此标记定义为内容?
<h1> <h1></h1>
。
<!DOCTYPE html>
<html>
<head>
<title><title></title>
</head>
<body>
<h1> <h1></h1>
<p> This is my first Paragraph</p>
</body>
</html>
答案 0 :(得分:4)
假设你想要“&lt; h1&gt;”显示为标题?
您需要对文本进行编码,如下所示:
<h1><h1></h1>
您可以使用一些转换器,例如http://www.web2generators.com/html/entities
答案 1 :(得分:2)
根据我的理解,我认为你想显示&lt; &GT;直。 您需要对html进行编码。
例如,<
到<
,>
到>
;
这是一个在线工具: http://www.opinionatedgeek.com/DotNet/Tools/HTMLEncode/Encode.aspx
答案 2 :(得分:1)
非常简单的答案。
<h1> This is how to use this tag in an HTML site/application </h1>
当你打开任何这样的HTML标签时
<span>
你也必须像这样关闭它
</span>
该标签的任何儿童必须放在打开和关闭标签之间,例如
<span><p> An example of parent/child tags in HTML </p></span>
等待一分钟
您是否只想使用<h1>
作为标题的文字?
如果那就是你想要的,p.s。你根本不清楚这里。那么
<h1> <h1> </h1>
答案 3 :(得分:0)
xmp
怎么样?
<xmp style='padding:0px;margin:0px;white-space:nowrap'>
<h1> This is my header<h1>
</xmp>