📄 test.html
字号:
<html><head><title>Test form for cgi-util 2.x</title></head><body><!-- test.html Test form for cgi-util 2.x by Bill Kendrick bill@newbreedsoftware.com --><!-- First, we begin an HTML form: --><form action="test.cgi" method="post"><!-- As you can see, it uses the "POST" HTTP method, and when submitted, will call up the "test.cgi" URL --><!-- Now, we put some form fields on the screen: -->Name? <input type="text" name="name"><br>Age? <input type="text" name="age"><br><!-- Those two are simple text forms, one's named "name", the other "age" -->Sex?<select name="sex"><option>Male</option><option>Female</option></select><br><!-- Above is a pull-down menu. Since we didn't specify "value"'s in the "option" tags, the text ("Male") and ("Female") will be the values --><!-- Finally, the all-important submit button: --><input type="submit" name="sub" value="Ok"><!-- Oops, one last thing... end the form: --></form><p></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -