做一个好看的小说app设置页面有退出登入按钮等等
以下是一个简单的小说app设置页面的示例代码:
<!DOCTYPE html>
<html>
<head>
<title>小说App设置</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
.container {
width: 300px;
margin: 0 auto;
}
.button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
text-align: center;
background-color: #4caf50;
color: white;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1>小说App设置</h1>
<a href="#" class="button">退出登录</a>
<a href="#" class="button">修改密码</a>
<a href="#" class="button">通知设置</a>
<a href="#" class="button">关于我们</a>
</div>
</body>
</html>
在这个示例中,我们使用了HTML和CSS来创建一个简单的设置页面。页面包括一个标题("小说App设置"),以及四个按钮:退出登录、修改密码、通知设置和关于我们。按钮使用了CSS样式,当鼠标悬停在按钮上时,背景颜色会有所变化。
你可以将上述代码保存为一个HTML文件,然后在浏览器中打开该文件,即可查看设置页面的效果。你可以根据需要对页面进行修改和美化
原文地址: https://www.cveoy.top/t/topic/hQUg 著作权归作者所有。请勿转载和采集!