在html中包含标题

时间:2016-01-31 08:58:47

标签: php html

如何在索引文件中正确包含我的标题。我希望有可能编辑我的标题,因为它在我的所有页面上。

假设我有一个标题:

<nav class="navbar navbar-default navbar-fixed-top topnav" role="navigation">
        <div class="container topnav">
            <!-- Brand and toggle get grouped for better mobile display -->
            <div class="navbar-header">
                <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
                    <span class="sr-only">Toggle navigation</span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button>
                <a class="navbar-brand topnav" href="#">Start Bootstrap</a>
            </div>
         </div>
    </nav

这段代码我已经复制到我的header.php,所以我只有一次编辑它。上面的代码应该在body标签内,还是我需要在头文件中加上html,head和body标签?

<html>
<head>

</head>
<body>
   <-!-- Code here -->
</body>
</html>

2 个答案:

答案 0 :(得分:1)

insertOne()

我相信你正在使用BOOTSTRAP

答案 1 :(得分:1)

鉴于包含PHP代码的所有文件,所有文件都应具有 .php 扩展名。

然后你可以包含你想要的任何HTML粒子:命名头文件 header.php ,页脚文件 footer.php:等。

<html>
<head>

</head>
<body>
     <?php include 'header.php'; ?>
       <-!-- Code here -->
     <?php include 'footer.php'; ?>
</body>
</html>