请你使用html5编写一个关于黄柳瑜的网站,内容要包括炫彩动画和相关按钮,比如联系作者之类的
时间: 2023-02-24 07:12:17 浏览: 85
使用css3实现炫彩按钮动画效果,十分酷炫
好的,以下是一个简单的HTML5代码示例:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>黄柳瑜</title>
</head>
<body>
<header>
<h1>黄柳瑜</h1>
</header>
<nav>
<ul>
<li><a href="#about">关于</a></li>
<li><a href="#animation">炫彩动画</a></li>
<li><a href="#contact">联系作者</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>关于黄柳瑜</h2>
<p>这里是一些关于黄柳瑜的信息。</p>
</section>
<section id="animation">
<h2>炫彩动画</h2>
<p>使用HTML5和CSS3制作的炫彩动画。</p>
</section>
<section id="contact">
<h2>联系作者</h2>
<p>如果您想与作者联系,请在这里提交您的信息。</p>
<form action="submit-form.php" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name">
<label for="email">电子邮件:</label>
<input type="email" id="email" name="email">
<label for="message">信息:</label>
<textarea id="message" name="message"></textarea>
<input type="submit" value="提交">
</form>
</section>
</main>
<footer>
<p>© 2023 黄柳瑜</p>
</footer>
</body>
</html>
```
请注意,这只是一个示例。您可以通过添加或修改内容来自定义您的网站。如果您想了解更多关于HTML5的信息,请访问W3Schools的网站:https://www.w3schools.com/html/default.asp。
阅读全文