Blogger Information
Blog 14
fans 2
comment 1
visits 7992
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html基础:表单元素及多媒体标签学习及实战
梦想
Original
381 people have browsed it

课后小实例

注册页面

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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>用户注册</title>
  8. </head>
  9. <body>
  10. <form action="check.php" method="post">
  11. <div>
  12. <h3>用户注册</h3>
  13. <label for="emaii">&nbsp;邮&nbsp;&nbsp;&nbsp;&nbsp;箱:&nbsp;</label>
  14. <input type="email" name="email" placeholder="admin@admin.cn"><br>
  15. <label for="username">用&nbsp;户&nbsp;&nbsp;名:</label>
  16. <input type="text" name="user" id="username" placeholder="请输入用户名"><br>
  17. <label for="pwd">用户密码:</label>
  18. <input type="password" name="paswd" id="pwd" placeholder="请输入密码"><br>
  19. <label for="sex3">&nbsp;性&nbsp;&nbsp;&nbsp;&nbsp;别&nbsp;:</label>
  20. <input type="radio" name="sex" id="sex1" value="nan"><label for="sex1"></label>
  21. <input type="radio" name="sex" id="sex2" value="nv"><label for="sex2"></label>
  22. <input type="radio" name="sex" id="sex3" checked><label for="sex3">保密</label>
  23. <br><label for="hobby">&nbsp;爱&nbsp;&nbsp;&nbsp;&nbsp;好:&nbsp;</label>
  24. <input type="checkbox" name="hobby[]" id="hobby" value="muisc"><label for="hobby">音乐</label>
  25. <input type="checkbox" name="hobby[]" id="hobby1" value="geme"><label for="hobby1">游戏</label>
  26. <input type="checkbox" name="hobby[]" id="hobby2" value="pc"><label for="hobby2">电脑</label><br>
  27. &nbsp;地&nbsp;&nbsp;&nbsp;&nbsp;区:&nbsp;
  28. <select name="diqu" id="">
  29. <option value="">---请选择---</option>
  30. <option value="北京">北京</option>
  31. <option value="上海">上海</option>
  32. <option value="江苏">江苏</option>
  33. <option value="浙江">浙江</option>
  34. <option value="浙江">湖南</option>
  35. <option value="浙江">湖北</option>
  36. <option value="浙江">河南</option>
  37. </select>
  38. </div>
  39. <div>
  40. <button style="width: 100px; ">点击注册</button>
  41. <input style="width: 100px;" type="reset" value="重新填写">
  42. </div>
  43. </form>
  44. </body>
  45. </html>

简单的后台管理

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=ui, initial-scale=1.0">
  7. <title>简单的后台管理</title>
  8. </head>
  9. <body>
  10. <ul>
  11. <li><a href="https://j.map.baidu.com/60/J" target="baidu">百度地图</a></li>
  12. <li><a href="dome.html" target="baidu">dome1</a></li>
  13. <li><a href="dome2.html" target="baidu">dome2</a></li>
  14. </ul>
  15. <iframe width="400px" height="300px" srcdoc="<a style='color:red;'>点击查看</a>" frameborder="1" name="baidu"></iframe>
  16. </body>
  17. </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
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!