之前的文章《一步步教你使用CSS製作一個簡單美觀的導覽列(程式碼詳解)》中,跟大家介紹如何使用CSS製作簡單美觀的導覽列。以下這篇文章跟大家介紹如何用html製作簡單的面頁佈局,我們一起看看怎麼做。
網路多數的網頁都是html寫的,html配合css佈局做成一個簡單的漂亮網頁。
程式碼範例
<!DOCTYPE html> <html> <head> <title>css网页布局 </title> <meta charset="utf-8"> <style> * { box-sizing: border-box; } body { margin: 0; } .header { background-color: #f1f1f1; } .topnav { overflow: hidden; background-color: #f61137; } .topnav a { float: left; color: #0017f9; padding: 10px 100px; text-decoration: none; } .topnav a:hover { background-color:#7efe51; </style> </head> <body> <div class="responsive"> <div class="img"> <a target="_blank" href="//static.runoob.com/images/demo/demo1.jpg"> <img src="//static.runoob.com/images/demo/demo1.jpg" alt="#" width="800" style="max-width:90%"> </a> </div> </div> <div class="topnav"> <a href="#">图片</a> <a href="#">视频</a> <a href="#">关于</a> </div> <div class="responsive"> <div class="img"> <a target="_blank" href="//static.runoob.com/images/demo/demo4.jpg"> <img src="//static.runoob.com/images/demo/demo4.jpg" alt="#" width="800" style="max-width:90%"> </a> </div> </div> </body> </html>
程式碼效果圖如下:
##程式碼步驟:
標籤語言有【開始標籤】和【結束標籤】,中間為標籤的內容,先我們輸入頭和尾。
<html> </html>2、一個簡單的 HTML 文檔,
帶有最基本的必要的元素。在中間加入標題
標籤,在title標題中加入網頁標題名:css面頁佈局,可以不寫。
<html> <head> <title>css网页布局 </title> </head> </html>3、網頁佈局