h5+css实现windows设置静态页面代码
时间: 2023-12-24 13:05:00 浏览: 84
静态页面代码
以下是一个简单的示例代码,使用HTML5和CSS实现Windows设置的静态页面:
```html
<!DOCTYPE html>
<html>
<head>
<title>Windows设置</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 32px;
margin-top: 0;
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type="text"], input[type="password"], textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
outline: none;
font-size: 16px;
margin-bottom: 20px;
}
button {
background-color: #4CAF50;
border: none;
color: #fff;
padding: 10px 20px;
border-radius: 3px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<h1>Windows设置</h1>
<form>
<label for="username">用户名</label>
<input type="text" id="username" name="username" required>
<label for="password">密码</label>
<input type="password" id="password" name="password" required>
<label for="email">电子邮件</label>
<input type="text" id="email" name="email" required>
<label for="phone">电话号码</label>
<input type="text" id="phone" name="phone" required>
<label for="address">地址</label>
<textarea id="address" name="address" rows="5" required></textarea>
<button type="submit">保存设置</button>
</form>
</div>
</body>
</html>
```
这段代码实现了一个简单的Windows设置页面,包括用户名、密码、电子邮件、电话号码和地址等输入项,以及一个保存设置的按钮。样式方面使用了简单的CSS,使页面看起来更加美观。注意,这只是一个静态页面,无法实现具体的Windows设置功能,您需要使用JavaScript和后端技术来实现。
阅读全文