我如何尝试创建调查并输出文本或xml文件的答案。 这可能在HTML中吗?
<html>
<head>
<title>Testing the Survey Application</title>
</head>
<body bgcolor="#E6E6FA">
<font color=black size=+3>Modifying Sentiment</font>
<hr>
Add positive adjective:
<img Adjective src="http://findicons.com/files/icons/2776/android_icons/96/ic_question_mark.png" alt="question" title="Adjective: is a word naming an attribute of a noun, such as sweet, red, or technical."
width=20 />
<br>
<textarea cols=40 rows=3 name=textBox1></textarea>
<p>
<hr>
<input type=submit value=Submit>
<input type=reset value=Clear>
<br>
</form>
</body>
</html>
答案 0 :(得分:1)
HTML是一种标记语言。它用于描述网页的元素。
如果您需要功能,例如提交和处理表单。您需要添加服务器端语言,例如Python
,PHP
,Ruby
等等。