帮我写一个其他的科技感的用户端静态html代码
时间: 2023-03-24 09:04:17 浏览: 78
好的,我可以帮您编写一个科技感的用户端静态 HTML 代码。以下是代码示例:
<!DOCTYPE html>
<html>
<head>
<title>科技感用户端</title>
<style>
body {
background-color: #1c1c1c;
color: #fff;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: ;
padding: ;
}
.container {
max-width: 120px;
margin: auto;
padding: 50px;
box-sizing: border-box;
}
h1 {
font-size: 48px;
font-weight: bold;
margin-bottom: 30px;
}
p {
font-size: 24px;
margin-bottom: 20px;
}
button {
background-color: #4CAF50;
border: none;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
border-radius: 5px;
transition: background-color .3s ease;
}
button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<h1>欢迎使用科技感用户端</h1>
<p>这是一个科技感十足的用户端,让您的使用体验更加舒适和高效。</p>
<button>立即体验</button>
</div>
</body>
</html>
阅读全文