HTML
HTML 表单和输入
带边框的表单 - 本例演示如何在数据周围绘制一个带标题的框。
源代码:
点击运行 »
<form action=""> <fieldset> <legend>Personal information:</legend> Name: <input type="text" size="30"><br> E-mail: <input type="text" size="30"><br> Date of birth: <input type="text" size="10"> </fieldset> </form>
运行结果:
点击运行 »