帮我写一个html页面,在页面的最中间包含一个输入框,输入的信息是学生的学号,输入框的右侧有一个查询按钮,点击可以跳转到其他的页面,在页面的左上角有个管理员登陆按钮,点击可以跳转到管理页面,页面风格想要一个炫酷点的,颜色我喜欢天蓝色。
时间: 2023-02-06 16:53:18 浏览: 236
一个超炫酷的跳转页面 HTML
以下是包含你所要求的功能的 HTML 页面的代码示例:
```html
<html>
<head>
<style>
/* 为页面设置天蓝色背景色 */
body {
background-color: skyblue;
}
/* 为输入框设置炫酷的样式 */
input[type="text"] {
border: 2px solid purple;
border-radius: 5px;
font-size: 20px;
padding: 5px;
}
/* 为查询按钮设置炫酷的样式 */
input[type="button"] {
background-color: purple;
border: none;
color: white;
font-size: 20px;
padding: 10px 20px;
border-radius: 5px;
}
/* 为管理员登录按钮设置炫酷的样式 */
a.admin-button {
background-color: purple;
color: white;
font-size: 20px;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none; /* 去掉超链接的下划线 */
}
</style>
</head>
<body>
<!-- 在页面的左上角添加管理员登录按钮 -->
<a href="admin.html" class="admin-button">管理员登录</a>
<!-- 在页面的最中间添加输入框和查询按钮 -->
<div style="text-align: center;">
<input type="text" placeholder="请输入学生学号" />
<input type="button" value="查询" onclick="location.href='student.html'" />
</div>
</body>
</html>
```
页面中使用了 HTML 的表单元素和样式元素,表单元素包括文本输入框(`input[type="text"]`)和按钮(`input[type="button"]`),样式元素包括超链接(`a`)
阅读全文