All called hypertext Markup Language, translated as Hypertext Markup Language, not a programming language, is a descriptive markup language that describes how content is displayed in hypertext.
First, the layout label
1, Layout Labels <!--notes--
2, paragraph mark <p> properties: align= "attribute value"
3, newline markers <br>
4, horizontal line markers
Two, font tags
1,<font> Color/size/face
2, title marker
3, special character <: less than number >: greater Than: space ©: Copyright number &trade: Trademark
Third, the use of images in HTML
Iv. Use of list lists in HTML
1, there is a sequence list (OL label) type attribute: a,a,l,i,1. The default is Arabic numerals 1
2, unordered list (ul label) Hollow Circle Circle, solid round disc, solid square square, default disc
3, definition list (DL label) DT DD
Five, use of hyperlinks in HTML
Hyperlink to text (a tag)
HREF attribute Destination Address
Target property: _blank _self _parent _top
Vi. use of tables in HTML
Create a simple table
Table Properties Border,bordercolor,width,height,align, cellspacing,cellpadding
Title of the table <caption>
Merging cells in a table (Rowspan,colspan)
Chunking and nesting of tables <thead> <tbody> <tfoot>
Seven, use of frameset in HTML
Creation of window frames (Frameset,frame tags)
Window properties: Rows horizontal split cols vertical split
frameborder:0 or 1 hide or show borders
scrolling= "No" yes whether it can scroll
Noresize can not change window size
Viii. use of the IFRAME tag
<iframe src= ". /code/1.jpg "width=" "height="/>
Nine, use of forms in HTML
The form label:<form> is used to interact with the server side.
<input>: Input tag, receive user input, type attribute
Text,password,radio,checkbox,hidden, Submit,reset,button,file,image
<select> label drop-down list size selected
Ten, the use of multimedia files in HTML
Links to Multimedia files:
<embed src= "Zxmzf.mp3" width= "" height= "autostart=" true "loop=" true "></embed>
Add background music to your Web page:
<bgsound src= "Zxmzf.mp3" loop= "-1"/>
Marquee:
<marquee behavior= "Alternate" width>
11, header tags in html
The head labels are placed between the
<title>: Specifies the browser's
<BASE>: The default address or default destination for the content displayed on the page for all the link rules title bars
<META>: can provide basic information about the page
<link>: Defining the relationship of documents to external resources
001_01html Common syntax