[Web] CSS (No.17) Css classic case of (a) "Css achieve Baidu Home"


Material needs or contact me private letters, comments

Renderings

Here Insert Picture Description

HTML Source

<!DOCTYPE html>
<html lang="en">
  <head>
	<meta charset="UTF-8">
	<title>百度首页</title>
	<link rel="stylesheet" href="css/index.css">
  </head>
  <body>
	<div>
	  <img src="img/bdlogo.gif" alt="">
	</div>

	<p>
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>&nbsp;&nbsp;
	  <a href="">&nbsp;</a>
	</p>
	<br>
	<br>

	<div>
	  <div style="width:100%;height:20px;text-align:center">
	    <input style="width:500px;height:25px" type="text" name="textbox">
	    <button style="width:100px;height:30px;text-align:center;background-color:#eeeeee">百度一下</button>
	  </div>
	</div>
	<br>

	<p>
	  <a href="">百科</a>&nbsp;&nbsp;
	  <a href="">文库</a>&nbsp;&nbsp;
	  <a href="">hao123</a>&nbsp;&nbsp;|&nbsp;
	  <a href="">更多>></a>&nbsp;&nbsp;
	</p>
	<br>
	<br>

	<p>
	  <img src="img/ic.jpg" alt="">
	  <a href="">百度地图带你吃喝玩乐,全心全意为人民服务</a>&nbsp;&nbsp;
	</p>
	<br>
	<br>

	<p>
	  <a href="">把百度设为主页</a>&nbsp;&nbsp;
	  <a href="">安装百度卫士</a>&nbsp;&nbsp;
	</p>

	<p>
	  <a href="">加入百度推广</a>&nbsp;&nbsp;|&nbsp;
	  <a href="">搜索风云榜</a>&nbsp;&nbsp;|&nbsp;
	  <a href="">关于百度</a>&nbsp;&nbsp;|&nbsp;
	  <a href="">About Baidu>></a>&nbsp;&nbsp;
	</p>

	<p>
	  ©2013&nbsp;Baidu&nbsp;使用百度前必读&nbsp;京ICP证030173号
	</p>
  </body>
</html>

CSS source code

div{
	text-align:center;
   }

p{
	text-align:center;
}

Guess you like

Origin blog.csdn.net/qq_43251850/article/details/91463172