<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>寿司注文</title>
<style>
body{background-color: skyblue;
}
h1{
text-align: center;
background-color: white;
}
option{
margin: auto;
}
</style>
</head>
<body>
<h1>寿司注文システム</h1>
<form action="order.cgi" method="post">
<select name="sushi">
<option value="まぐろ">まぐろ</option>
<option value="サーモン">サーモン</option>
<option value="えび">えび</option>
</select>
<input type="submit" value="注文">
</form>
</body>
</html>