HTML 相关
HTML 相关
2018/11/29 Chenxin
参考:
http://www.w3school.com.cn/html/html_headings.asp
http://www.runoob.com/tags/tag-pre.html
通用概念
元素
元素 = 开始标签 + 内容 + 结束标签.
- 块级元素:在浏览器默认显示时以新行来开始(和结束)的元素。
- 内联元素:又称行内元素,在浏览器默认显示时在同一行按从左至右顺序显示,不单独占一行的元素。
属性
开始标签中那些以名称/值对的形式出现的内容,我们称之为属性。
如:href="http://hanzhaoxin.cnblogs.com/"。(href是属性名称,"http://hanzhaoxin.cnblogs.com/"是属性值)。
常见元素
根元素,元数据元素,脚本元素,块元素,列表元素,表格元素
文本元素,文本格式化元素,计算机输出标签,引用和属于定义,链接与图像
This is a paragraph
(line break)(horizontal rule)
This text is preformatted
Logical Styles
This text is emphasized
This text is strong
This is some computer code
Physical Styles
This text is bold
This text is italic
Links, Anchors, and Image Elements
This is a Link
Send e-mail
A named anchor:
Useful Tips Section 创建锚
Jump to the Useful Tips Section 调用锚
Unordered list
- First item
- Next item
Ordered list
- First item
- Next item
Definition list
- First term
- Definition
- Next term
- Definition
Tables
someheader | someheader |
---|---|
sometext | sometext |
Frames
Forms
Entities
< is the same as <
> is the same as >
© is the same as ©
Other Elements
Text quoted from some source.Address 1
Address 2
City
form 表单
HTML 表单用于搜集不同类型的用户输入。
表单元素指的是不同类型的 input 元素、复选框、单选按钮、提交按钮等等。
元素
元素是最重要的表单元素。 元素有很多形态,根据不同的 type 属性。这是本章中使用的类型:
类型 描述
text 定义常规文本输入。
radio 定义多选一
submit 定义提交按钮(提交表单)
如,
Action 属性
action 属性定义在提交表单时执行的动作。提交到服务器上的某个程序,指定了某个服务器脚本来处理被提交表单: