First, the basic concept of HTML carding, to master the basic knowledge
1 What is HTML (XHTML)
1) The certification method of the organization and relevant standards, XHTML (whether meet the requirements of the above);
2) The basic structure and xhtml1.0 Basic specification of XHTML documents;
3) content and performance separation of ideas, HTML structure as far as possible semantic.
2 Block Level Labels
1)
2) <div> <li> <dd> <td> <form>
3) <ol> <ul> <dl> <table>
3 Row-level labels
1) <a> <span> <br/>
2) <input> <textarea> <select>
4 Common label combinations
1) Div-ul (OL)-li: often used for category navigation or menu occasions
2) DIV-DL-DT-DD: Commonly used in picture and text mixing occasions
3) TABLE-TR-TD: Often used for structured data display occasions
4) FORM-TABLE-TR-TD: Commonly used in form layout situations
Second, the basic concept of CSS carding
1 CSS Basic syntax
Must be mastered, no longer listed:)
2 Common CSS Properties
1) Text, font
2) List, table
3) Hyperlinks
3 using CSS for page layout
1) Box model related properties margin, border, padding, width, height, positon
2) Overall layout of the page
Including the common layout technology, the realization idea of DIV+CSS
3) page Local layout
Several typical layout structures (the following article illustrates the supplement)
0 Basic Learning HTML and CSS