<form>标签小test

表单的小测试,纯粹的练习,可以在官网:https://www.w3schools.com/html/html_forms.asp练习


<!DOCTYPE>

<html>

<body>

    <form action="/action.php">

    FirstName:<br>
    <input type="text" name="FirstName" value="Abby">
    LastName:<br>
    <input type="text" name="Lastname" value="Wu">
    <input type="submit" name="submit">
    
    </form>
    <p>if you click the submit,"FirstName:Abby"and "LastName:Wu" will deliver to action.php</p>

</body>

</html>

 

posted @ 2017-08-16 17:33  Abby*^o^*  阅读(113)  评论(0编辑  收藏  举报