Blogger Information
Blog 28
fans 0
comment 1
visits 13309
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单和iframe
centos
Original
467 people have browsed it

表单和iframe

登录表单演示

  1. <!-- 登录表单 -->
  2. <form action="" method="get">
  3. <label for="user-name">用户:</label>
  4. <input
  5. type="text"
  6. id="user-name"
  7. name="user-name"
  8. value=""
  9. placeholder="请输入汉字"
  10. required
  11. />
  12. <label for="psw">密码:</label>
  13. <input
  14. type="password"
  15. id="psw"
  16. name="password"
  17. value=""
  18. placeholder="输入八位数字"
  19. required
  20. />
  21. <label for="my-email">邮箱:</label>
  22. <input
  23. type="email"
  24. id="my-email"
  25. name="email"
  26. value=""
  27. placeholder="输入邮箱"
  28. required
  29. />
  30. <button>注册</button>

简单的iframe

  1. <div>
  2. <h2>后台管理</h2>
  3. <div>
  4. <span>admin</span>
  5. <a href="">退出</a>
  6. </div>
  7. </div>
  8. <ul class="nav">
  9. <li><a href="demo1" target="content">菜单导航1</a></li>
  10. <li><a href="demo2" target="content">菜单导航2</a></li>
  11. <li><a href="demo3" target="content">菜单导航3</a></li>
  12. <li><a href="demo4" target="content">菜单导航4</a></li>
  13. <li><a href="demo5" target="content">菜单导航5</a></li>
  14. </ul>
  15. <iframe src="" frameborder="1" name="content"></iframe>
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!