请用html帮我写一个程序比赛网页
时间: 2024-12-12 20:20:22 浏览: 6
当然可以,下面是一个简单的HTML结构,用于创建一个基本的比赛网页示例。这个例子包含了一个标题、竞赛描述、报名表单和比赛日期等元素:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>程序比赛</title>
<style>
/* 你可以添加一些基本样式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
form {
width: 400px;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>程序设计大赛 - 2023年度</h1>
</header>
<main>
<section>
<h2>竞赛简介</h2>
<p>欢迎参加本年度的程序设计比赛,我们期待您的精彩表现!</p>
</section>
<!-- 报名表单 -->
<section id="registration-form">
<h2>报名表单</h2>
<form action="submit_registration.php" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="participant_name" required><br>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required><br>
<label for="team">团队名称(选填):</label>
<input type="text" id="team" name="team_name"><br>
<button type="submit">立即报名</button>
</form>
</section>
<section>
<h2>比赛日期</h2>
<p>比赛将于2023年XX月XX日举行。</p>
</section>
</main>
<footer>
<p>© 2023 程序比赛组委会 | <a href="#">隐私政策</a></p>
</footer>
</body>
</html>
```
阅读全文