问答详情
源自:6-11 填完就可以提交咯 - 提交按钮

哪位大神能把这个给制作出来?

就当是练手吧

http://img.mukewang.com/5835349e0001114e14190027.jpg

提问者:狂四郎 2016-11-23 14:19

个回答

  • start_learning
    2016-11-23 14:42:23

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>登录</title>

    </head>


    <body>

    <form method="post" action="">

       <label for="account">账号</label>

      <input type="text" name="account" id="account" />

      <label for="password">密码</label>

      <input type="password" name="password" id="password" />

      <input type="submit" id="login" value="登录"/>

      <span style="font-size:13px;color:gray;">忘记密码 | 免费注册</span>

      <span style="font-size:13px;color:gray;margin-left:100px;">生意宝 | 生意社 | 交易中心 |</span>

      <span style="font-size:13px;color:orange;">ChinaMedevice</span>

    </form>

    </body>

    </html>


  • 狂四郎
    2016-11-23 14:34:29

    少了右边部分


  • start_learning
    2016-11-23 14:30:46

    给你写了一个,不知道能不能帮到你。

    源代码如下:

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>登录</title>

    </head>


    <body>

    <form method="post" action="">

       <label for="account">账号</label>

      <input type="text" name="account" id="account" />

      <label for="password">密码</label>

      <input type="password" name="password" id="password" />

      <input type="submit" id="login" value="登录"/>

      <span style="font-size:13px;color:gray">忘记密码 | 免费注册</span>

    </form>

    </body>

    </html>