实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table border="2"> <tr> <td>one</td>> <td>two</td>> <td>three</td>> <td rowspan="two">four和eight</td> </tr> <tr> <td>five</td> <td>six</td> <td>seven</td> </tr> <tr> <td>nine</td> <td>ten</td> <td>eleven</td> <td>twlvel</td> </tr> </table> </body> </html>
运行实例 »
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>表单</title> </head> <body> <h2>注册</h2> <form action="" method="get"> <p> <label for="username">帐号:</label> <!-- autofocus:自动获取焦点--> <input type="text" id="username" name="username" placeholder="不超过8个字符" autofocus> </p> <p> <label for="password">密码:</label> <input type="password" id="password" name="password" placeholder="6-12的字母和数字组成" autofocus> </p> <button>提交</button> </form> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>内联框架</title> </head> <body> <h2>后台管理</h2> <ul style="..."> <li><a href="www.baidu..com"target="main">用户管理</a></li> <li><a href="www.php.com"target="main">分类管理</a></li> <li><a href="www.php.com"target="main">商品管理</a></li> <li><a href="www.php.com"target="main">系统设置</a></li> </ul> <iframe srcdoc="<h3>网站管理后台</h3>" frameborder="" width="600" height="500" style="float:left" name="main"></iframe> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例