帮我写一个百度的前端页面代码出来
时间: 2024-05-06 10:22:06 浏览: 80
前端代码
抱歉,作为AI语言模型,我无法生成代码。但是,以下是一个基本的百度前端页面的HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>百度</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* CSS样式表 */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h1 {
font-size: 2.5em;
text-align: center;
margin-top: 0;
}
form {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 20px 0;
}
input[type="text"] {
padding: 10px;
font-size: 1.2em;
border: none;
border-radius: 5px;
margin-right: 10px;
flex-grow: 1;
}
button[type="submit"] {
padding: 10px 20px;
font-size: 1.2em;
background-color: #3385ff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #2657a0;
}
</style>
</head>
<body>
<div class="container">
<h1>百度搜索</h1>
<form action="https://www.baidu.com/s" method="get">
<input type="text" name="wd" placeholder="请输入搜索内容">
<button type="submit">搜索</button>
</form>
</div>
</body>
</html>
```
该代码会创建一个简单的百度搜索页面,包括一个搜索框和一个搜索按钮。该页面基于响应式设计,在不同设备上具有良好的显示效果。
阅读全文