<iframe> Inline Frame
Syntax <iframe src= "URL" name= "frame name" >......</iframe>
Scrolling (show scroll bar) Yes (display) No (not shown) auto (auto)
Frameborder (show Border) 1 (display) 0 (not shown)
Form (form)
Basic structure <form name= "Form1" action= "URL" method= "Get" >
User name: <input type= "text" name= "uname"/>
Password: <input type= "password" name= "password"/>
</form>
Name (name) Action (Form submit address) target (open mode)
Method (Form data submission method (get public) (post secrecy)) Enctype (MIME type)
<input> (Form element: Input box)
Type (type) value (value) size (width) readonly (read-only)
MaxLength (maximum length of input characters) disabled (disabled)
In <input>, there are different boxes for type
Type= "Text" (text box) text= "Password" (Password box)
Type= "Radio" (Radio) type= "checkbox" (check)
Type= "button" (OK button) type= "Submit" (Submit button)
Type= "Reset" (override button) type= "image" (Picture button)
Ps:checked is selected by default, note that when type= "Radio", which is a single selection, the value of name is consistent.
HTML Essay 2