用HTML和css做一个可交互的家乡介绍
时间: 2024-01-30 19:01:56 浏览: 137
HTML+CSS+JS 大一前端基础静态页面大作业
好的,下面是一个简单的可交互的家乡介绍的HTML和CSS代码:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>家乡介绍</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>欢迎来到我的家乡!</h1>
<nav>
<ul>
<li><a href="#introduction">介绍</a></li>
<li><a href="#history">历史</a></li>
<li><a href="#attractions">景点</a></li>
<li><a href="#contact">联系</a></li>
</ul>
</nav>
</header>
<main>
<section id="introduction">
<h2>家乡介绍</h2>
<p>这里是我的家乡,一个美丽的小城市,位于中国的东南部。</p>
</section>
<section id="history">
<h2>家乡历史</h2>
<p>我们的城市有着悠久的历史,可以追溯到数百年前。在过去的几个世纪中,我们的城市曾是一个繁荣的贸易中心,吸引了来自世界各地的商人和旅行者。</p>
</section>
<section id="attractions">
<h2>家乡景点</h2>
<ul>
<li><a href="#">城市公园</a></li>
<li><a href="#">博物馆</a></li>
<li><a href="#">名胜古迹</a></li>
<li><a href="#">美食街</a></li>
</ul>
</section>
<section id="contact">
<h2>联系我们</h2>
<form>
<label for="name">姓名:</label>
<input type="text" id="name" name="name" required><br>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required><br>
<label for="message">留言:</label>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="提交">
</form>
</section>
</main>
<footer>
<p>© 2021 My Hometown</p>
</footer>
</body>
</html>
```
CSS代码:
```css
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
h1 {
margin: 0;
font-size: 32px;
text-align: center;
}
nav {
text-align: center;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
margin: 0 10px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 20px;
}
main {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
section {
margin-bottom: 40px;
}
h2 {
font-size: 28px;
margin-bottom: 20px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 10px;
}
li a {
color: #333;
text-decoration: none;
font-size: 20px;
}
li a:hover {
text-decoration: underline;
}
form {
margin-top: 20px;
padding: 20px;
background-color: #f2f2f2;
border-radius: 10px;
}
input, textarea {
padding: 5px;
width: 100%;
border: none;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px;
}
```
这个家乡介绍包含了一个可交互的导航菜单,可以通过点击菜单项来快速浏览页面的不同部分。此外,它还包含了一些基本的样式和布局,包括页面标题,背景颜色,边框效果和阴影效果。表单还包括了一个简单的输入验证,确保必填字段不为空。
阅读全文