|
@@ -0,0 +1,44 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <!-- center居中 -->
|
|
|
+ <center>
|
|
|
+ <h1>注册信息</h1>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <td>用户名:</td>
|
|
|
+ <td><input type="text"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>密码:</td>
|
|
|
+ <td><input type="password"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>性别:</td>
|
|
|
+ <td>
|
|
|
+ <input type="radio">男
|
|
|
+ <input type="radio">女
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>兴趣爱好:</td>
|
|
|
+ <td>
|
|
|
+ <input type="checkbox">足球
|
|
|
+ <input type="checkbox">篮球
|
|
|
+ <input type="checkbox">排球
|
|
|
+ <input type="checkbox">游泳
|
|
|
+
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+
|
|
|
+ </center>
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>
|