【Web】CSS(No.17)Css经典案例(一)《Css实现百度首页》


需要素材联系我或私信、评论

效果图

【Web】CSS(No.17)Css经典案例(一)《Css实现百度首页》_第1张图片

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=""> a>  
	  <a href=""> a>  
	  <a href=""> a>  
	  <a href=""> a>  
	  <a href=""> a>  
	  <a href=""> a>  
	  <a href=""> a>  
	  <a href=""> 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>  
	  <a href="">文库a>  
	  <a href="">hao123a>  | 
	  <a href="">更多>>a>  
	p>
	<br>
	<br>

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

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

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

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

CSS源码

div{
     
	text-align:center;
   }

p{
     
	text-align:center;
}

你可能感兴趣的:(Web-Css,Web,Css)