使用HTML、CSS和JS做一个个人博客网站。
时间: 2024-05-16 10:17:28 浏览: 105
好的,以下是一个简单的个人博客网站的 HTML、CSS 和 JavaScript 代码示例:
HTML:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Blog</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="post">
<h2>My First Post</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod tellus id est vehicula, sed bibendum velit ultrices. Nam euismod eleifend massa, id ullamcorper nulla sodales eu. </p>
</section>
<section class="post">
<h2>My Second Post</h2>
<p>Proin a est quis nulla suscipit sagittis. Ut nec maximus nisi, vitae faucibus magna. Nunc ac tempor massa. </p>
</section>
</main>
<footer>
<p>© 2021 My Blog</p>
</footer>
</body>
</html>
```
CSS:
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
}
nav ul {
list-style: none;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
.post {
margin: 50px;
}
.post h2 {
font-size: 24px;
margin-bottom: 10px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
```
JavaScript:
```javascript
// JavaScript代码可以用来实现博客的交互功能,如评论、点赞等等。
// 这里提供一个简单的示例:
const likeBtn = document.querySelector('.like-btn');
let likes = 0;
likeBtn.addEventListener('click', function() {
likes++;
likeBtn.textContent = `Like (${likes})`;
});
```
注意,这只是一个简单的示例,实际的个人博客网站需要更多的 HTML、CSS 和 JavaScript 代码来实现各种功能。另外,也可以使用现有的博客平台(如WordPress、Blogger等)来搭建个人博客。
阅读全文