百度首頁模仿(html)詳解
阿新 • • 發佈:2018-12-12
相信大姐學習html這一門語言的第一步一般都是做一個百度首頁或者菜鳥教程首頁(菜鳥教程首頁模仿戳這裡)什麼的吧,下面就來分享一下我所寫的百度首頁的模仿過程:
1、分析佈局,這裡我將他的佈局分為三大塊,上中下各一個div塊
2、往div塊中新增詳細內容,設定樣式等等
原始碼:
<!DOCTYPR html> <html> <head> <title>無標題文件</title> <style type="text/css"> body{ height:100%; width:100%; margin:0; padding:0; } .main{ width:100%; height:100%; margin:0; padding:0; } .menu{ text-align:right; } a{ text-decoration:none; } .middle{ text-align:center; width:100%; height:100px; margin-top:130px; } .input{ border: 1px solid #b6b6b6; width:474px; height:36px; font-size:20px; } .img{ align:middle; border:0; width:275px; height:140px; } .submit{ background-color:#3385ff; height:38px; font-size:20px; color:white; border:0 } </style> </head> <body> <div style="text-align:right;"> <div class="menu"> <a href="http://www.nuomi.com/?cid=002540">糯米</a> <a href="http://news.baidu.com">新聞</a> <a href="http://www.hao123.com">hao123</a> <a href="http://map.baidu.com">地圖</a> <a href="http://v.baidu.com">視訊</a> <a href="http://tieba.baidu.com">貼吧</a> <a href="https://passport.baidu.com/v2/?login&tpl=mn&u=http%3A%2F%2Fwww.baidu.com%2F">登入</a> <a href="http://www.baidu.com/gaoji/preferences.html">設定</a> <a href="http://www.baidu.com/more/">更多產品</a> </div> </div> <div class="middle"> <form action="http://www.baidu.com/baidu" target="_blank"> <a href="https://www.baidu.com/" target="_blank" align="center"> <img src="https://www.baidu.com/img/bd_logo1.png" alt="Baidu" class="img"> </a> <br> <input type="text" class="input" name="word"> <input type="submit" value="百度一下" class="submit" href="https://www.baidu.com/" > </form> </div> <div align="center" style="bottom:0;margin-top:300px;"> <div> <a id="setf" href="//www.baidu.com/cache/sethelp/help.html" target="blank">把百度設為主頁</a> <a href="http://home.baidu.com">關於百度</a> <a href="http://ir.baidu.com">About Baidu</a> <a href="http://e.baidu.com/?refer=888">百度推廣</a></p> <p>©2016 Baidu <a href="http://www.baidu.com/duty/">使用百度前必讀</a> <a href="http://jianyi.baidu.com/">意見反饋</a> 京ICP證030173號 </p> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11000002000001" target="_blank">京公網安備11000002000001號</a> </div> </div> </body> </html>