美文网首页
2019-01-22 web day2 homework

2019-01-22 web day2 homework

作者: woming | 来源:发表于2019-01-22 19:39 被阅读0次

作业地址
或者

作业.png
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>XXX系统登录界面</title>
<link rel="icon" type="img/ico" href="img/aaa.ico"/>
        <style type="text/css">
            .C1{
                font-size: 15px;
                color: white;
                background-color: deepskyblue;
            }
            .C1:hover{
                color: dimgray;
            }
            .C1:active{
                font-size: 10px;
            }
            .b1:hover{
                color: mediumvioletred;
            }
            .b1:active{
                font-size: 20px;
            }
            

        </style>
    </head>
    <body>
        <br /><br /><br /><br /><br /><br /><br />
        <table width="400" height="300" bordercolor="black" align="center" border="1" cellspacing="0" cellpadding="3">
            <tr align="center" bgcolor="aliceblue">
                <td>
                    <h3 style="font-size:30px;color:cornflowerblue;">XXX系统登录界面</h3>
                    <hr />

                <form action="" method="get">
                    <input class="C2" type="text" name="username" id="username" value="" placeholder="手机号/邮箱"/>
                    <br />
                    <input class="C2" type="password" name="password" id="password" maxlength="8" value="" placeholder="密码(6-8位)"/>
                    <br />
                </td>
            </tr>
            <tr align="center" bgcolor="aliceblue">
                <td>
                    <input type="checkbox" name="choice" id="c1" value="自动登录" /><label for="c1">自动登录</label>
                    <input type="checkbox" name="choice" id="c2" value="记住密码" /><label for="c2">记住密码</label>
                    <input class="b1" type="button" name="choice" value="找回密码" />
                    <hr />
                    <input class="C1" type="submit" value="登录"/>
                    <input class="C1" type="submit" value="注册"/>
                </form>
                </td>

            </tr>

        </table>
        
    </body>
</html>

相关文章

网友评论

      本文标题:2019-01-22 web day2 homework

      本文链接:https://www.haomeiwen.com/subject/pgprjqtx.html