<!DOCTYPE html>
<html>
<head>
	<title>护照办理系统</title>
	<meta charset='UTF-8'>
	<meta name='viewport' content='width=device-width, initial-scale=1.0'>
	<style>
		body {
			font-family: Arial, sans-serif;
			background-color: #f2f2f2;
		}
		h1 {
			font-size: 2em;
			text-align: center;
			margin-top: 50px;
		}
		form {
			background-color: #fff;
			padding: 20px;
			max-width: 600px;
			margin: 0 auto;
			box-shadow: 0 0 10px rgba(0,0,0,0.1);
			border-radius: 5px;
		}
		label {
			display: block;
			margin-bottom: 10px;
			font-weight: bold;
		}
		input[type='text'], input[type='email'], input[type='tel'] {
			display: block;
			width: 100%;
			padding: 10px;
			margin-bottom: 20px;
			border: 1px solid #ccc;
			border-radius: 5px;
			font-size: 1em;
		}
		input[type='radio'] {
			margin-right: 10px;
		}
		select {
			display: block;
			width: 100%;
			padding: 10px;
			margin-bottom: 20px;
			border: 1px solid #ccc;
			border-radius: 5px;
			font-size: 1em;
		}
		button[type='submit'] {
			background-color: #4CAF50;
			color: #fff;
			padding: 10px 20px;
			border: none;
			border-radius: 5px;
			font-size: 1em;
			cursor: pointer;
			margin-bottom: 20px;
		}
		button[type='submit']:hover {
			background-color: #3e8e41;
		}
	</style>
</head>
<body>
	<h1>护照办理系统</h1>
	<form method='post' action='submit.php'>
		<label for='name'>姓名:</label>
		<input type='text' id='name' name='name' required>
<pre><code>	&lt;label for='email'&gt;电子邮件:&lt;/label&gt;
	&lt;input type='email' id='email' name='email' required&gt;
	
	&lt;label for='phone'&gt;电话:&lt;/label&gt;
	&lt;input type='tel' id='phone' name='phone' required&gt;
	
	&lt;label for='gender'&gt;性别:&lt;/label&gt;
	&lt;input type='radio' id='male' name='gender' value='male' required&gt;
	&lt;label for='male'&gt;男&lt;/label&gt;
	&lt;input type='radio' id='female' name='gender' value='female'&gt;
	&lt;label for='female'&gt;女&lt;/label&gt;
	
	&lt;label for='nationality'&gt;国籍:&lt;/label&gt;
	&lt;select id='nationality' name='nationality' required&gt;
		&lt;option value=''&gt;请选择国籍&lt;/option&gt;
		&lt;option value='china'&gt;中国&lt;/option&gt;
		&lt;option value='usa'&gt;美国&lt;/option&gt;
		&lt;option value='japan'&gt;日本&lt;/option&gt;
		&lt;option value='korea'&gt;韩国&lt;/option&gt;
		&lt;option value='uk'&gt;英国&lt;/option&gt;
		&lt;option value='france'&gt;法国&lt;/option&gt;
	&lt;/select&gt;
	
	&lt;button type='submit'&gt;提交&lt;/button&gt;
&lt;/form&gt;
</code></pre>
</body>
</html>
护照办理系统 - 在线申请页面 HTML 代码

原文地址: https://www.cveoy.top/t/topic/nh4g 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录