Html, html tutorial
HTML:
* HTML Overview:
* HTML: Hyper Text Markup Language.
* HTML is composed of a group of tags.
* HTML font labels:
* <Font> tag:
* Attribute: color, size, face
* HTML layout labels:
* H Tag: Title Tag.
* P Tag: paragraph tag.
* B label: bold label.
* I tag: italic tag.
* U Tag: underline tag.
* Br label: line feed.
* Hr Tag: horizontal line.
* HTML image tags:
* Img Tag:
* Attributes:
* Src attribute: Path of the image.
* Relative Path:./indicates the current directory./indicates the upper-level directory.
* Width, height, alt.
* HTML hyperlink labels:
* A Tag:
* Attributes:
* Href: link path.
* Target: Link Opening method. _ self, _ blank, _ parent
* HTML list tags:
* Unordered list: <ul>
* Ordered list: <ol>
* HTML table tags:
* Table label:
* Tr Tag: the row of the table.
* Td Tag: Table column.
* HTML form tags :(*****)
* Form Tag:
* Action attribute: the form submission path.
* Method attribute: Form submission method.
* GET and POST:
* GET: the address bar displays the submitted data. The size is limited.
* POST: the address bar does not display the submitted data, and there is no size limit.
* <Input>
* Type = "text": text Box
* Type = "password": password box.
* Type = "radio": Single-choice button.
* Type = "checkbox": check box.
* Type = "file": file upload.
* Type = "hidden": hides a field.
* Type = "submit": submit button.
* Type = "reset": reset button.
* Type = "button": normal button.
* Type = "image": image button.
* <Select>: drop-down list.
* <Textarea>: Region
* HTML framework Tag:
* <Frameset>
* <Frame>