html5 css js网页制作成品
时间: 2024-12-09 08:09:16 浏览: 39
HTML5、CSS和JavaScript是现代网页开发的核心技术。通过这三种技术的结合,可以创建出功能丰富、交互性强的网页。下面是一个简单的示例,展示如何使用这三种技术创建一个基本的网页成品。
### 示例:简单的网页成品
#### 1. HTML5 (index.html)
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>简单的网页成品</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>欢迎来到我的网页</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 id="home">
<h2>首页</h2>
<p>这是首页的内容。</p>
</section>
<section id="about">
<h2>关于我们</h2>
<p>这是关于我们的内容。</p>
</section>
<section id="contact">
<h2>联系我们</h2>
<form id="contactForm">
<label for="name">姓名:</label>
<input type="text" id="name" name="name" required>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required>
<button type="submit">提交</button>
</form>
</section>
</main>
<footer>
<p>© 2023 我的网页</p>
</footer>
<script src="script.js"></script>
</body>
</html>
```
#### 2. CSS (styles.css)
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
}
header h1 {
margin: 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
text-align: center;
}
nav ul li {
display: inline-block;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
```
#### 3. JavaScript (script.js)
```javascript
document.getElementById('contactForm').addEventListener('submit', function(event) {
event.preventDefault();
alert('感谢您的联系,我们会尽快回复您!');
this.reset();
});
```
### 说明
1. **HTML5**: 定义了网页的基本结构和内容,包括头部、导航栏、主内容区和页脚。
2. **CSS**: 负责网页的样式设计,包括颜色、字体、布局等。
3. **JavaScript**: 增加了网页的交互功能,例如表单提交后的提示信息。
通过这个简单的示例,你可以了解到如何使用HTML5、CSS和JavaScript创建一个基本的网页成品。
阅读全文