javaweb个人主页设计(html+css+js)
以下是一个简单的示例,展示了如何使用HTML、CSS和JavaScript来创建一个个人主页的基本结构和样式。
<!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;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.header {
width: 100%;
text-align: center;
background-color: #333;
color: white;
padding: 10px 0;
}
.content {
margin: 20px;
padding: 20px;
background-color: #f2f2f2;
}
.footer {
width: 100%;
text-align: center;
background-color: #333;
color: white;
padding: 10px 0;
clear: both;
}
</style>
</head>
<body>
<div class="header">
<h1>欢迎来到我的主页</h1>
</div>
<div class="content">
<h2>个人简历</h2>
<!-- 这里可以添加更多的个人信息和内容 -->
</div>
<div class="footer">
<p>版权所有 © 2023 我的主页</p>
</div>
<script>
// 这里可以添加更多的JavaScript代码,例如实现动态效果等
</script>
</body>
</html>
这个示例提供了一个简单的结构,其中包含了头部(Header)、内容区(Content)和底部(Footer)。CSS用于设置页面的布局和样式,JavaScript可以用来添加交互和动态效果。这个基本框架可以根据实际需求进一步完善和个性化定制。
评论已关闭