请写一个赛博朋克风的html官网
时间: 2024-05-18 07:16:42 浏览: 144
用HTML写一个原神官网
以下是一个赛博朋克风格的HTML官网示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>赛博朋克官网</title>
<style>
/* 全局样式 */
body {
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
}
a {
color: #0f0;
text-decoration: none;
}
a:hover {
color: #fff;
}
.container {
margin: 0 auto;
max-width: 960px;
padding: 50px;
}
h1, h2, h3, h4, h5, h6 {
color: #0f0;
font-weight: normal;
margin: 0 0 20px;
}
p {
margin: 0 0 20px;
}
/* 导航菜单 */
nav {
background-color: #111;
margin-bottom: 50px;
padding: 20px;
text-align: right;
}
nav a {
display: inline-block;
margin-left: 20px;
}
/* 大标题 */
.hero {
background-image: url('https://picsum.photos/id/1001/960/400');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 400px;
position: relative;
text-align: center;
}
.hero:before {
background-color: rgba(0, 0, 0, 0.5);
content: '';
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.hero h1 {
font-size: 64px;
margin-bottom: 0;
padding-top: 100px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
font-size: 24px;
margin: 0;
padding-top: 20px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* 三列布局 */
.features {
display: flex;
flex-wrap: wrap;
margin-bottom: 50px;
}
.feature {
flex-basis: calc(33.33% - 20px);
margin: 10px;
padding: 20px;
text-align: center;
}
.feature h2 {
font-size: 32px;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.feature p {
font-size: 18px;
margin: 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* 底部 */
.footer {
background-color: #111;
padding: 20px;
text-align: center;
}
.footer p {
margin: 0;
}
</style>
</head>
<body>
<nav>
<a href="#">首页</a>
<a href="#">产品</a>
<a href="#">关于我们</a>
<a href="#">联系我们</a>
</nav>
<div class="container">
<header class="hero">
<h1>赛博朋克</h1>
<p>探索未来的科技世界</p>
</header>
<section class="features">
<article class="feature">
<h2>未来城市</h2>
<p>走进未来城市,感受赛博世界的魅力。</p>
</article>
<article class="feature">
<h2>智能机器人</h2>
<p>智能机器人,让你的生活更加便捷。</p>
</article>
<article class="feature">
<h2>虚拟现实</h2>
<p>虚拟现实,带你进入真实之外的世界。</p>
</article>
</section>
</div>
<footer class="footer">
<p>© 2022 赛博朋克</p>
</footer>
</body>
</html>
```
这个示例中,我们使用了黑色背景、绿色文字、简洁的排版、未来主义的图片等元素,来营造赛博朋克的科技感。同时,我们还使用了CSS3动画、Flex布局等现代技术来实现页面效果。
阅读全文