在Web開發(fā)中,HTML底部頁(yè)面通常包含版權(quán)信息、公司地址以及其他實(shí)用鏈接等。以下是一個(gè)示例HTML底部頁(yè)面代碼:
<footer> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-6 footer-box"> <h4>公司地址</h4> <p>北京市海淀區(qū)xxxxx街道xxxxx號(hào)</p> <p><i class="fa fa-phone"></i> +86-xxxx-xxxxxx</p> <p><i class="fa fa-envelope"></i> info@example.com</p> </div> <div class="col-md-2 col-sm-6 footer-box"> <h4>實(shí)用鏈接</h4> <ul class="footer-links"> <li><a href="#">關(guān)于我們</a></li> <li><a href="#">服務(wù)項(xiàng)目</a></li> <li><a href="#">新聞中心</a></li> <li><a href="#">聯(lián)系我們</a></li> </ul> </div> <div class="col-md-3 col-sm-6 footer-box"> <h4>關(guān)注我們</h4> <div class="footer-social-icons"> <a href="#"><i class="fa fa-facebook"></i></a> <a href="#"><i class="fa fa-twitter"></i></a> <a href="#"><i class="fa fa-linkedin"></i></a> <a href="#"><i class="fa fa-youtube"></i></a> </div> </div> <div class="col-md-3 col-sm-6 footer-box"> <h4>最新新聞</h4> <p>最近我們發(fā)布了一些新產(chǎn)品,點(diǎn)擊下面鏈接了解詳情。</p> <p><a href="#" class="btn btn-primary">了解更多</a></p> </div> </div> </div> <div class="footer-bottom"> <div class="container"> <div class="row"> <div class="col-md-12"> <p>© 2021 版權(quán)所有 | 公司名稱</p> </div> </div> </div> </div> </footer>
在這個(gè)代碼示例中,使用了HTML5中的<footer>標(biāo)簽來(lái)定義底部區(qū)域,里面的內(nèi)容包含四個(gè)列,用Bootstrap的列(<div class="col-md-4 col-sm-6">等)進(jìn)行排列。另外,使用了Bootstrap的其他類來(lái)創(chuàng)建樣式,比如按鈕(<a href="#" class="btn btn-primary">了解更多</a>)和圖標(biāo)(<i class="fa fa-envelope"></i>)等。最后,使用了CSS類來(lái)定義底部區(qū)域的樣式(.footer-box、.footer-links等)。