(a) Form
1.<form action= "" method= "Get/post" ></form>
2.12 Elements of a form
Text class:
<input type= "text" value= "" >-text box
<input type= "password" value= "" >-Password box
<textarea></textarea>----text Box
<input type= "hidden" value= "" >-Hidden fields
Button class
<input type= "button" value= "" >-normal button does not submit data
<input type= "Submit" value= ">-submit button Submit data
<input type= "Rest" value= "" >-Recharge button empty
<input type= "image" Value= "" >-Picture button equivalent to submit button,
Select Class
<input type= "Radio" value= "" >-radio button checked is the default page selection name is to be grouped, the radio is mutually exclusive
Gender: <input type= "Radio" id= "Man" name= "Sex" checked= "checked"/>--label is mouse pressed on the word can also be selected
<label for= "man" > Men </label>
<input type= "Radio" id= "Woman" name= "sex"/>
<label for= "Woman" > Women </label><br>
<input type= "checkbox" value= ">---check button
<select>----drop-down list
<option></option>
</select>
<input type= "file" value= "" >----Select File
(ii) Framework
1.iframe
<iframe src= "displayed page address" width= "" height= "" name= "set Name property" ></iframe>
<a href= "http://www.baidu.com" target= "123" > Baidu </a>----target opens a new Web page displayed in the IFRAME
<a href= "http://www.sina.com.cn" target= "123" > Sina </a>
<iframe width= "100%" height= "500px" src= "http://www.qq.com" name= "123" >
</iframe>
In the framework of the show Baidu, Sina's
2. title bar Small Icon
<link rel= "shortcut icon" type= "Image/x-icon" href= "Picture location" media= "screen"/>
3. Stroke Point
add id= "???" at the title of the target location
Use a hyperlink to fill in the "#???" in the href
<a href= "#111" > First line </a>
<a href= "#222" > Second line </a>
<a href= "#h333" > Third row </a>
Jump content set Id,href jump directly to the content ID, and on the top of the page to display the content of the jump
4. Insert Video
Find a location to share, copy HTML code, and paste it into a Web page at Youku and other video sites
<embed src= ' http://player.youku.com/player.php/sid/XMjY0NTkwMjEzMg==/v.swf ' allowfullscreen= ' true ' quality= ' High ' width= ' 480 ' height= ' + align= ' middle ' allowscriptaccess= ' always ' type= ' Application/x-shockwave-flash ' > </embed>
Set AutoPlay to add after. swf? Videoids=xnda3otm4na=&isautoplay=true&isshowrelatedvideo=false&embedid=-&showad=0
5. Inserting audio
<embed src= "Images/333.mp3" hidden= "true" autostart= "true" loop= "true" >
5. Simple scroll bar effect
Simple scrolling Effect:
<marquee direction= "Right" behavior= "alternate" scrollamount= "> Cheerleaders </marquee>
2017-3-23 Web page form frame title bar small icon Stroke Insert Video Audio simple scroll bar