实例
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Management Center</title> </head> <body> <h1>Management Center</h1> <form action="" method="get" name="register"> <p> <label for="username" >login account</label> <input type="text" id="username" name="username" placeholder="ceshi001" autofocus> </p> <p> <label for="password" >login password</label> <input type="password" id="password" name="password" placeholder="ceshi001" autofocus> </p> <p> <label for="email" > account email</label> <input type="email" id="email" name="email" placeholder="example@mail.com" required> </p> <p> <label for="age" >AGE</label> <input type="number" id="age" name="age" min="10" max="99" </p> </form> <p> <label for="programme">Programme</label> <input type="checkbox" name="hobby[]" value="game" id="game"><label for="game">GAME</label> <input type="checkbox" name="hobby[]" value="programme" id="programme"><label for="programme">programme</label> <input type="checkbox" name="hobby[]" value="programme" id="movies" checked><label for="movies">movise</label> </p> <p> <label for="comment" >comment</label> <textarea name="comment" id="comment" cols="30" rows="10" maxlength="30" placeholder="Not less than 30 words"></textarea> </p> <p> <input type="submit" name="submit" value="submit"> <button>Button1</button> </p> <tbody> <hr> <table border="1" cellspacing="0" cellpadding="5" width="500" align="left" bgcolor="#7fffd4"> <tr> <td width="50">ceshi01</td> <td width="200">ceshi01</td> <td width="70">ceshi01</td> <td width="50">ceshi05</td> <td width="80">ceshi06</td> </tr> <tr> <td width="50">1</td> <td width="200">k</td> <td width="70">800</td> <td width="50">1</td> <td width="80">800</td> </tr> <tr> <td width="50">1</td> <td width="200">k</td> <td width="70">800</td> <td width="50">1</td> <td width="80">800</td> </tr> </tbody> <tfoot> <tr> <td colspan="3" align="center">zongji</td> <td>10</td> <td>1000</td> </tr> </tfoot> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例