Blogger Information
Blog 16
fans 0
comment 0
visits 6178
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单,简单的后台管理系统
glen
Original
455 people have browsed it
表单,注册页面

代码演示

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>7-5表单</title>
  8. </head>
  9. <body>
  10. <form action="check.php" method="post" onsubmit="return false">
  11. <div>
  12. <label for="uname">用户名:</label>
  13. <input type="text" id="uname" autofocus>
  14. </div>
  15. <div>
  16. <label for="psw">密 码:
  17. <input type="password" id="psw" name="password">
  18. <button onclick="showpassword">查看密码</button>
  19. </label>
  20. </div>
  21. <!--文本框-->
  22. <div>
  23. <label for="sercit">性 别:</label>
  24. <input type="radio" id="male" name="sex" value="male" checked> <label for="male"></label>
  25. <input type="radio" id="female" name="sex" value="female"> <label for="female"></label>
  26. <input type="radio" id="sercit" name="sex" value="sercit"> <label for="sercit">其他</label>
  27. </div>
  28. <div>
  29. <label for="sercit">爱好:</label>
  30. <input type="checkbox" id="male" name="hobby[]" value="male" checked> <label for="male">物理</label>
  31. <input type="checkbox" id="female" name="hobby[]" value="female"> <label for="female">地理</label>
  32. <input type="checkbox" id="sercit" name="hobby[]" value="sercit" checked> <label for="sercit">化学</label>
  33. </div>
  34. <div>
  35. <label for="">搜索来源:</label>
  36. <select name="" id="">
  37. <option value="1">百度一下</option>
  38. <option value="2">谷歌一下</option>
  39. <option value="3">搜狗一下</option>
  40. <option value="4" selected>360搜索</option>
  41. </select>
  42. </div>
  43. <div>
  44. <button type="submit">提交</button>
  45. </div>
  46. </body>
  47. </html>

效果图展示:
注册页面效果图


媒体标签

<video src=""></video> 多媒体标签

controls 显示播放控件,布尔属性

autoplay 自动播放

poster 视频封面

代码演示

  1. </head>
  2. <body>
  3. <video src="0000000.mp4" width="500" controls autoplay></video>
  4. </body>
  5. </html>

效果图:
视频效果图


iframe 内联框架标签 画中画

target 指定页面在那个窗口打开及打开方式
代码演示:

  1. <head>
  2. <body>
  3. <br>
  4. <a href="https://j.map.baidu.com/49/g" target="map">武汉市</a>
  5. <br />
  6. <iframe src="" frameborder="2" width="500" height="300" name="map"></iframe>
  7. </body>
  8. </head>

效果示例图:


简单的网站后台管理系统:
代码演示:

  1. <div class="header">
  2. <h1>网站后台管理系统</h1>
  3. </div>
  4. <em>PHP</em>
  5. <a href="logout.php">退出</a>
  6. <div>
  7. </div>
  8. <ul class="nav">
  9. <li><a href="https://www.php.cn/xiazai/coll/1" target="content" width="500" height="300">PHP手册大全</a></li>
  10. <li><a href="https://www.php.cn/xiazai/coll/3" target="content">CSS 参考手册大全</a></li>
  11. <li><a href="https://www.php.cn/xiazai/coll/4" target="content">HTML 参考手册大全</a></li>
  12. <li><a href="https://www.php.cn/xiazai/shouce/28" target="content">JavaScript参考手册</a></li>
  13. <iframe srcdoc="<a href=''>请点击上方按钮</a>" frameborder="2" name="content" width="500" height="300"></iframe>
  14. </ul>
  15. </body>
  16. </html>

效果示例图:

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments