在</p> <h1>标记中写出HTML <p>标记

时间:2017-11-23 13:25:07

标签: html

我想在我的标题中添加<p>标记,我试图这样做,但标题中未显示<p>标记:

&#13;
&#13;
<h1> <p>I want to see the p tags!</p> </h1>
&#13;
&#13;
&#13;

如何强制<p>标记到标题字符串中?

4 个答案:

答案 0 :(得分:2)

没有

<h1>个元素可能没有<p>元素后代。

请参阅the specification,其中h*元素内容模型为“短语内容”,其中不包含p元素。

答案 1 :(得分:2)

这样的东西?

void string_to_int(char *line, int array[], int size) {

    int i = 0;

    // First implementation:

    char *ptr = line;

    while (*ptr != '\n')
    { 
        sscanf(ptr, "%d%n", &array[i], &offset);
        ptr += offset;
        i++;
    }


    // Second implementation:
    for(i = 0; i < size; i++)
    {
        array[i] = line[2*i] - '0';
    }
}

答案 2 :(得分:0)

<h1> &lt;p&gt;I can see the p tags!&lt;/p&gt; </h1>没有意义的标记。它不能是标题和段落。你想做什么?如果您只是想以与段落相同的方式设置标题样式,则添加一些样式。内联示例如下:

<h1><p>

这会使p, h1 { font-size: 0.7em; font-weight: normal; } <h1>相同。

答案 3 :(得分:0)

替换&lt; &lt;和&gt;按&gt;