【H5】简易百度

Osinghong4个月前 (02-24)成果展示102
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>百度一下</title>
		<style>
			html {
				width: 1200px;
				margin: 0 auto;
			}
    

			.nav {
				margin-top: 2%;
				margin-left: 1%;
			}


			.nav a {
				text-decoration: none;
				color: black;
				margin-left: 1em;
			}


			button {
				font-size: 14px;
				background-color: blue;
				color: white;
				border-radius: 10px;
				border: 1px white solid;
			}


			.dl {
				margin-left: 65%;
				width: 60px;
				height: 30px;
			}


			.bd {
				margin-left: 440px;
			}


			.search {
				margin-left: 33%;
			}


			.search input {
				width: 300px;
				height: 40px;
				border-radius: 10px;
				border: 1px solid black;
			}


			.search button {
				width: 80px;
				height: 40px;
				font-size: 14px;
			}
		</style>
	</head>
	<body>
		<div class="nav">
			<a href="#">新闻</a>
			<a href="#">地图</a>
			<a href="#">贴吧</a>
			<a href="#">图片</a>
			<a href="#">Odocs</a>
			<button class="dl">登录</button>
		</div>
		<div class="bd">
			<img src="https://odocs.top/zb_users/upload/2025/03/baidu.png" width="300px" />
		</div>
		<br />
		<div class="search">
			<input type="search" placeholder="D24C04429 欧永鸿" id="" />
			<button>百度一下</button>
		</div>
		<div class="footer"></div>
	</body>
</html>


打赏
分享给朋友:

相关文章

【H5】小米导航栏6个月前 (12-05)