我的网站是html5。 如何设置全局页眉和页脚。?
标题介于<header id="header" class="navbar-static-top"></header>
之间
页脚位于<footer id="footer"></footer>
我创建了两个文件一个header.html,另一个是footer.html
设置此方法有什么方法?
答案 0 :(得分:0)
使用一个文件
<header>
<h1>Most important heading here</h1>
<h3>Less important heading here</h3>
<p>Some additional information here</p>
</header>
<footer>
<p>Posted by: Hege Refsnes</p>
<p>Contact information: <a href="mailto:someone@example.com">
someone@example.com</a>.</p>
</footer>