我遵循了How to create custom theme for Google Form?中的步骤。这是我的表单检查enter image description here的图像以及我的代码条目。映射对我不起作用。请指教。预先感谢。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
</head>
<body>
<h3>Contact Us</h3>
<div class="container">
<form action="/action_page.php">
<label for="Name">Name</label>
<input type="text" id="1633920210" name="Name" placeholder="Your name..">
<label for="Email">Email</label>
<input type="text" id="227649005" name="Email" placeholder="Your email..">
<label for="Phone Number">Phone Number</label>
<input type="text" id="1770822543" name="Phone Number" placeholder="Your phone number..">
<label for="Comments">Comment</label>
<textarea id="1846923513" name="Comments" placeholder="Comment here.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>