Blogger Information
Blog 19
fans 0
comment 1
visits 14183
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML 语法 元素 属性
Original
699 people have browsed it

HTML

> 行级标签和超链接标签

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <mate chaset="UTF-8"/>
  5. </head>
  6. <body>
  7. <h1> h1-h6 标题标签 也是行级标签 h1 最大 h6 最小 </h1>
  8. <p>行级标签 会占用一整行的标签</p>
  9. <a href="链接名 如(http://www.baidu.com)" target="_">超链接标签</a>
  10. </body>
  11. </html>

a 是一个网页的父级标签 超链接标签
a 做为父级标签 target 属性 作用于在什么窗口打开 如 blank 覆盖当前的网页


有序列表和无序列表和自定义列表

有序列表

  1. <ol>
  2. <li>1</li>
  3. <li>2</li>
  4. <li>3</li>
  5. </ol>

无序列表

  1. <ul>
  2. <li>.....</li>
  3. <li>....</li>
  4. <li>....</li>
  5. </ul>

自定义列表

  1. <dl>
  2. <dt>表头 如某某公司</dt>
  3. <dd>地址</dd>
  4. <dd>联系电话</dd>
  5. </dl>

表单

表单是后台获取客户信息重要环节

  1. <form action="提交地址" 使用哪种协议提交的 = post get >
  2. <input type="text" name="email" request />
  3. <button type="submit">提交</button>
  4. </form>
Correcting teacher:天蓬老师天蓬老师

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