Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/79.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 页面布局HTML5_Css_Html_Wordpress_Layout - Fatal编程技术网

Css 页面布局HTML5

Css 页面布局HTML5,css,html,wordpress,layout,Css,Html,Wordpress,Layout,我正在尝试为我的Pesonel博客创建我的第一个Wordpress主题,它应该是这样的: 我使用的是Grid960,我应该把文章放在一个部分还是相反的部分 这是我的页面布局,Structure,我想知道它是否正确: <body class="container_12"> <nav> </nav> <article 1> <h2></h2>

我正在尝试为我的Pesonel博客创建我的第一个Wordpress主题,它应该是这样的: 我使用的是Grid960,我应该把文章放在一个部分还是相反的部分 这是我的页面布局,Structure,我想知道它是否正确:

<body class="container_12"> 
    <nav>           
    </nav>  
         <article 1>
            <h2></h2>
            <p</p>
            <a href="#"> Show More</a>          
          </article>
                  <article 2>
            <h2></h2>
            <p</p>
            <a href="#"> Show More</a>          
          </article>
    <aside>
        <section> 
        <h4></h4>
        </section>
        <section> 
        <h4></h4>
            </section>
    </aside>
       <footer>
       </footer>
</body>


您编写了两个段落标记,如
是无效的HTML5标记,
也是无效的,请删除这些数字。这是什么标签?
也请阅读这里的用法说明:我知道我在文章中添加了“1和2”,这意味着这是第一篇文章和第二篇文章,因为没有任何理由比我们预期的
1
2
在你的
标签下的意义更大,甚至比我们通知你的打字错误还要多。我知道我添加了“1和2”to article to意味着这是第一篇和第二篇文章,是的,它是有效的html。但要确保在正文前有SomeTitleWords标签。。如果您使用wordpress,它可能位于名为header.php的单独文件中。然后,在您需要之后,但这可能已经在footer.php中了。
<article class="article1" id="firstarticle" style="background: blue;"> </article>
<article 3>
<article someword anotherword>
<article class=article1>
<body class="container_12"> 
    <nav>           
    </nav>  
         <article class="article1">
            <h2></h2>
            <p></p>
            <a href="#"> Show More</a>          
          </article>
                  <article class="article2">
            <h2></h2>
            <p></p>
            <a href="#"> Show More</a>          
          </article>
    <aside>
        <section> 
        <h4></h4>
        </section>
        <section> 
        <h4></h4>
            </section>
    </aside>
       <footer>
       </footer>
</body>