Blogger Information
Blog 33
fans 0
comment 0
visits 17136
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单,后台,元素样式的实例演示
lucaslwk
Original
380 people have browsed it

表单,后台,元素样式的实例演示

1.登录表单

实例

登录表单实例

表单数据查看

表单数据查看

关键代码

  1. <form action="form.php" method="post">
  2. <div>
  3. <label for="user">用户名:</label>
  4. <input
  5. type="text"
  6. id="user"
  7. name="user"
  8. placeholder="请输入用户名"
  9. autofocus
  10. required
  11. />
  12. </div>
  13. <div>
  14. <label for="email">邮&emsp;箱:</label>
  15. <input type="email" id="email" name="email" placeholder="请输入邮箱" />
  16. </div>
  17. <div>
  18. <label for="password">密&emsp;码:</label>
  19. <input
  20. type="password"
  21. id="password"
  22. name="password"
  23. placeholder="请输入密码"
  24. required
  25. />
  26. </div>
  27. <div>
  28. <button>提交</button>
  29. </div>
  30. </form>

2.后台框架

实例

后台框架实例

关键代码

  1. <div class="nav">
  2. <ul>
  3. <li><a href="https://map.baidu.com" target="iframe">百度地图</a></li>
  4. <li><a href="https://map.qq.com/" target="iframe">腾讯地图</a></li>
  5. <li><a href="https://www.amap.com/" target="iframe">高德地图</a></li>
  6. <li><a href="https://www.earthol.com/" target="iframe">卫星地图</a></li>
  7. </ul>
  8. </div>
  9. <div class="body">
  10. <iframe
  11. srcdoc="<h1>点击左侧选择地图网站</h1>"
  12. frameborder="1"
  13. name="iframe"
  14. ></iframe>
  15. </div>

3.元素样式

实例

元素样式实例

关键代码

  1. <!-- 用户代理样式 -->
  2. <h1>用户代理样式,浏览器样式,默认样式</h1>
  3. <!-- 用户自定义样式 -->
  4. <h1 style="color: aqua">用户自定义样式</h1>
  5. <!-- 样式继承 -->
  6. <div style="color: blue">
  7. <h1>样式继承</h1>
  8. </div>
  9. <!-- 样式书写顺序 -->
  10. <h1 style="color: green">样式书写顺序</h1>
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