用html+css写一个精美的个人主页
时间: 2023-12-07 08:06:00 浏览: 112
html+css实现的超漂亮个人主页源代码
好的,以下是一个简单的个人主页示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Personal Page</title>
<style>
body {
background-color: #F5F5F5;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
h1 {
margin: 0;
font-size: 36px;
}
nav {
background-color: #666;
color: white;
padding: 10px;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: white;
text-decoration: none;
font-size: 18px;
}
section {
background-color: white;
padding: 20px;
margin: 20px;
border-radius: 10px;
box-shadow: 5px 5px 10px #888888;
}
footer {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>My Personal Page</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<section>
<h2>About Me</h2>
<p>Hi, my name is Jane Doe and I am a web developer based in New York City. I specialize in HTML, CSS, and JavaScript and I love creating beautiful and functional websites for my clients.</p>
<p>When I'm not coding, you can find me hiking in the mountains or reading a good book.</p>
</section>
<footer>
<p>Copyright © 2021 My Personal Page</p>
</footer>
</body>
</html>
```
在这个示例中,我们使用了 HTML 和 CSS 来创建一个简单的个人主页。页面包含了一个标题、一个导航栏、一个内容区域和一个页脚。其中,导航栏包含了三个链接,用于导航到不同的页面。内容区域包含了一些介绍自己的文字,页脚包含了版权信息。
你可以根据自己的需要进行修改和调整,使得你的个人主页更加精美和个性化。
阅读全文