无需掌握前端三剑客的知识,10s种做出下图的效果。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的个人网页</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
}
.container {
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 0 30px;
}
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
}
nav {
display: flex;
justify-content: space-around;
background: #555;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 15px;
}
nav a:hover {
background: #777;
}
main {
padding: 30px 0;
}
section {
margin-bottom: 30px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: absolute;
bottom: 0;
width: 100%;
}
.button {
display: inline-block;
background: #4CAF50;
color: white;
padding: 10px 20px;
text-decoration: none;
margin: 5px 0;
border-radius: 5px;
}
.button:hover {
background: #45a049;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的个人网页</h1>
</header>
<nav>
<a href="#about">关于我</a>
<a href="#portfolio">作品集</a>
<a href="#contact">联系方式</a>
</nav>
<div class="container">
<main>
<section id="about">
<h2>关于我</h2>
<p>这里是关于我的介绍。我是一位热爱编程的开发者,专注于前端开发。</p>
<button class="button" onclick="showAlert()">点击我!</button>
</section>
<section id="portfolio">
<h2>作品集</h2>
<p>这里展示我的一些项目作品。</p>
<!-- 在这里添加你的作品集内容 -->
</section>
<section id="contact">
<h2>联系方式</h2>
<p>如果你想联系我,请发送邮件至 example@example.com。</p>
</section>
</main>
<footer>
版权所有 © 2024 我的个人网页
</footer>
</div>
<script>
function showAlert() {
alert('欢迎来到我的网页!');
}
</script>
</body>
</html>
这个模板包含了以下特性:
- 响应式布局:通过meta标签设置了视口,确保网页在不同设备上都能良好显示。
- 导航菜单:一个简单的导航栏,可以链接到页面的不同部分。
- 个人介绍、作品集和联系方式:三个主要的部分,用于展示你的个人信息和作品。
- JavaScript按钮特效:一个简单的按钮,点击后会弹出一个警告框。
- CSS样式:使用了基本的CSS样式来美化网页,包括字体、背景颜色、按钮样式等。
你可以将这个模板保存为.html
文件,并在浏览器中打开来查看效果。根据需要,你可以添加更多的内容和特效,比如图片轮播、动画效果等。