趣味互动评价生成器
<!DOCTYPE html>
<html>
<head>
<title>趣味互动评价生成器</title>
<style>
body {
background-image: url('manzhouli.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.container {
width: 400px;
margin: 0 auto;
padding: 20px;
background-color: white;
border-radius: 10px;
text-align: center;
}
.form-group {
margin-bottom: 10px;
}
label {
display: block;
font-weight: bold;
}
input[type='text'] {
width: 100%;
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
select {
width: 100%;
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;
background-color: #4CAF50; /* 绿色 */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class='container'>
<h1>趣味互动评价生成器</h1>
<form>
<div class='form-group'>
<label for='name'>姓名:</label>
<input type='text' id='name' name='name' required>
</div>
<div class='form-group'>
<label for='character'>想让谁评价:</label>
<select id='character' name='character'>
<option value='孙悟空'>孙悟空</option>
<option value='猪八戒'>猪八戒</option>
<option value='唐僧'>唐僧</option>
<option value='白骨精'>白骨精</option>
<option value='女儿国国王'>女儿国国王</option>
<option value='牛魔王'>牛魔王</option>
<option value='夏海生'>夏海生</option>
</select>
</div>
<div class='form-group'>
<label for='duration'>预设评价时长(分钟):</label>
<input type='number' id='duration' name='duration' min='1' value='5'>
</div>
<button type='submit'>生成评价</button>
</form>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/fvSX 著作权归作者所有。请勿转载和采集!