HTML制作百度首页

制作百度首页时候,除了要用到div进行分块,还需要对快的位置进行控制,一般有

对div进行规范大小width,height分别对应宽度高度

margin:有对div进行定位有margin-top,margin-left,margin-right,margin-buttom

float-left:吧div元素进行从左到右排列

了解这些简单的操作之后,就可以自己动手做出一个简单百度页面了,例如:

上面的页面html代码如下:

 
 
<html>
<head>
	<title>百度一下,你就知道</title>
	<link href="baidu.ico" rel="shortcut icon" type="ico图标路径"/>
	<style>
	.div_head{
			width:100%;
			height:150px;
			
			margin-top:0px;
	}
	
	.div_mid{
			width:100%;
			height:130px;
			
			margin-top:0px;
	}
	.div_body{
			width:100%;
			height:200px;
			
			margin-top:0px;
	}
	.div_base{
			width:100%;
			height:60px;
			
			float:left;
			margin-top:0px;
	}
	.div_based{
			width:100%;
			height:100%;
			
			float:left;
			margin-top:0px;
			
	}
	
	
	.div_head1{
		width:540px;
		height:24px;
		
		float:right;
		margin-top:25px;
		
	}
	.div_head2{
			width:50px;
			height:24px;
			
			float:left;
			line-height:24px;
			text-align:center;			
	}
	.div_mid1{
			width:270px;
			height:130px;
			
			float:left;
			
			margin-left:39%;
	}	
	.div_body1{
			width:600px;
			height:36px;
			background-color:#999;
			float:left;
			
			margin-left:32%;
	}	
	
	.div_base1{
			width:60px;
			height:60px;
			margin:0 auto;
			float:left;
			margin-top:5%;
	}
 
	</style>
</head>
<body style="margin:0 auto">
	<div class="div_head" >
			<div class="div_head1">
					<div class="div_head2" ><font size="1" ><ins>新闻 </ins></font></div>               
					<div class="div_head2" ><font size="1" ><ins>hao123</ins> </font></ins></div> 
					<div class="div_head2" ><font size="1" ><ins>地图 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>资源 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>视频 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>贴吧 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>学术 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>登录 </ins></font></div> 
					<div class="div_head2" ><font size="1" ><ins>设置 </ins></font></div>
					<div class="div_head2" style="width:70px;background-color:#38f" ><font size="1" color="white" >更多产品</font></div> 
			</div>
	</div>
 
	<div class="div_mid" >
	
		<div class="div_mid1" >
			<a href="https://www.baidu.com/s?wd=%E7%BD%91%E7%BB%9C%E8%A1%A8%E6%83%85%E7%AC%A6%E5%8F%B7%E8%AF%9E%E7%94%9F&sa=ire_dl_gh_logo&rsv_dl=igh_logo_pcs" target="_blank">
				<img  height=130 width=270 src="https://www.baidu.com/img/bd_logo1.png?where=super" title="百度一下你就知道"/>
			</a>	
 
		</div>
	</div>
 
	<div class="div_body" >
			<div class="div_body1" >
					<form action="https://www.baidu.com/s"  method="get"  >
					<input style="width:500px;height:36px;"type="text"/><input id="gender" name="gender" type="submit"  value="百度一下"style="width:100px;height:36px;"/>	
					</form>
			</div>
	</div>
	
	<div class="div_base" >
				<div class="div_base1" style="margin-left:48%;">
						<img  height=60 width=60 src="https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/static/protocol/https/home/img/qrcode/zbios_efde696.png" title="我是一个二维码"/>
				</div>
	</div>
	
	
</body>
</html>

通过这个简单的百度页面 ,让自己对元素的应用更加得心应手

  • 16
    点赞
  • 126
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
制作百度搜索页面需要一定的HTML和CSS知识。以下是一个简单的示例,供参考: ```html <!DOCTYPE html> <html> <head> <title>百度搜索</title> <style type="text/css"> body { background-color: #f0f0f0; font-family: Arial, sans-serif; } .container { max-width: 800px; margin: 0 auto; padding: 20px; background-color: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); } .form-group { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 20px; } .form-group input[type="text"] { flex: 1; padding: 10px; border: none; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); font-size: 18px; line-height: 24px; color: #333; } .form-group button[type="submit"] { padding: 10px 20px; background-color: #3385ff; border: none; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); font-size: 18px; line-height: 24px; color: #fff; cursor: pointer; } .form-group button[type="submit"]:hover { background-color: #2977e8; } </style> </head> <body> <div class="container"> <form action="https://www.baidu.com/s" method="get"> <div class="form-group"> <input type="text" name="wd" placeholder="请输入搜索关键词"> <button type="submit">百度一下</button> </div> </form> </div> </body> </html> ``` 解释: - `<!DOCTYPE html>`:声明HTML文档类型。 - `<html>`:HTML文档的根元素。 - `<head>`:文档头部,包括了页面的元数据和引用的外部资源。 - `<title>`:文档标题,显示在浏览器的标签页上。 - `<style>`:定义文档的样式。 - `<body>`:HTML文档的主体部分。 - `.container`:定义一个容器,包含搜索表单。 - `.form-group`:定义一个表单组,包含搜索输入框和提交按钮。 - `action`:定义提交表单时要请求的URL地址。 - `method`:定义表单提交的HTTP方法,这里使用GET方法。 - `name`:定义表单字段的名称。 - `placeholder`:定义输入框的默认提示文本。 - `type="submit"`:定义一个提交按钮。 这段HTML代码生成的页面如下所示: ![百度搜索页面](https://i.imgur.com/5Zi6qkH.png)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值