Basic html knowledge
Table:
Tr row
Border = "1"
Align = "center"
Td Column
Hyperlink:
Multiple choice checkbox
Single-choice radio can only be viewed by name in a group
<Input type = "text">
Option:
Education level: <select>
<Option> university </option>
<Option> middle school </option>
</Select>
File Upload: <input type = "file">
Button: <input type = "button" value = "hello word" onclick = "javascript: alert ('Hello World');">
Html code
<Html>
<Head>
<Title> hello </title>
</Head>
<Body>
<P> [Url = http://baidu.com] this is BaiDu [/url]
<! --
<Table border = "1" align = "center" width = "80%">
<Tr>
<Td> aa </td>
</Tr>
<Tr>
<Td align = "center"> aa </td>
</Tr>
-->
<Form>
Please input: <input type = "text">
<Br>
Please input: <input>
<Br>
Please input password: <input type = "password">
<Br>
Interest: Learning <input type = "checkbox">
Travel <input type = "checkbox">
<Br>
Gender: male <input type = "radio" name = "qender">
Female <input type = "radio" name = "qender">
<Br>
Education level: <select>
<Option> university </option>
<Option> middle school </option>
</Select>
<Br>
Comment: <textarea>
Hello
</Textarea>
<Br>
File Upload: <input type = "file">
<Br>
<Br>
<Input type = "submit" value = "submit"> <input type = "reset" value = "reset">
& Nbsp <input type = "button" value = "hello word" onclick = "javascript: alert ('Hello World');">
Figure:
</Form>
</Table>
</Body>
Author: "smartan"