博客列表 >简单的HTML表单元素实现注册及IFRAME框架

简单的HTML表单元素实现注册及IFRAME框架

P粉932932019
P粉932932019原创
2022年07月06日 15:40:10450浏览

一、HTML表单元素

注册页面效果
注册页面效果

注册页面代码

  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>Document</title>
  8. </head>
  9. <body>
  10. <form action="check.php" method="post" name="regist">
  11. <label for="uname">姓名:</label>
  12. <input type="text" id="uname" name="uname" placeholder="Type Your Name">
  13. <br>
  14. <label for="password">密码:</label>
  15. <input type="password" id="password" name="password" placeholder="Type Your Password">
  16. <br>
  17. <label for="sex">性别:</label>
  18. <input type="radio" name="sex" value="0" checked>
  19. <input type="radio" name="sex" value="1">
  20. <br>
  21. <label for="hobby">爱好:</label>
  22. <input type="checkbox" name="hobby[]" value="Game" checked>游戏
  23. <input type="checkbox" name="hobby[]" value="Study">学习
  24. <input type="checkbox" name="hobby[]" value="Work">工作
  25. <br>
  26. <label for="class">课程</label>
  27. <select name="class" id="class">
  28. <option value="" selected disabled>---SELECT---</option>
  29. <option value="PHP">PHP</option>
  30. <option value="ASP">ASP</option>
  31. <option value="JAVA">JAVA</option>
  32. <option value="JSP">JSP</option>
  33. </select>
  34. <br>
  35. <p>简介:</p>
  36. <label for="content"></label>
  37. <textarea name="content" id="content" cols="30" rows="5"></textarea>
  38. <br>
  39. <button type="submit">提交</button>
  40. <button type="reset">重置</button>
  41. </form>
  42. </body>
  43. </html>

二、后台管理

后台管理效果

后台管理代码

  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>Document</title>
  8. </head>
  9. <style>
  10. body{margin: 0;padding: 0;}
  11. .top{width: 100%; height: 150px; border: 1px solid red;background: rgb(134, 163, 241);line-height: 150px;font-size: 24px;}
  12. .left{width: 20%; min-height: 800px; background: rgb(141, 248, 182); float: left;}
  13. .right{width: 80%; min-height: 800px; background: rgb(250, 250, 212); float: left;}
  14. </style>
  15. <body>
  16. <div class="top">后台管理</div>
  17. <div class="left">
  18. <ul>
  19. <li><a href="regist.html" target="content">用户注册</a></li>
  20. <li><a href="https://map.baidu.com/@13265880.8,4373425.72,12z" target="content">城市地图</a></li>
  21. <li><a href="video.html" target="content">视频展示</a></li>
  22. </ul>
  23. </div>
  24. <div class="right">
  25. <iframe src="" frameborder="1" name="content" width="100%" height="800px"></iframe>
  26. </div>
  27. </body>
  28. </html>

三、视频播放

效果

代码

  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>Document</title>
  8. </head>
  9. <body>
  10. <video src="/aaa.mp4" controls autoplay poster="https://img.php.cn/upload/aroundimg/000/000/068/62398180bdae8398.jpg" width="500px" ></video>
  11. </body>
  12. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议