The product manager proposes project requirements
UI design draft
Front-end personnel are responsible for developing static pages (backend personnel who are synchronized with the front-end are preparing data)
Interaction between front-end and back-end
Testing
Product launch (late project maintenance)
When the user is in the browser When you enter a URL, it will be sent to the corresponding server to request the web page information corresponding to the URL
The server will download the web resources corresponding to the URL to a temporary file on your computer Folder
The resources in the temporary folder are displayed through the browser (so when we request the website for the second time, the speed will be much faster)
Inline elements: There are n multiple inline elements in a row, and the width and height of inline elements cannot be set
Block elements : A block element, occupying one line by itself;
Inline block element: There can be multiple inline block elements in one line, but the width and height can be set
!DOCTYPE..Document declaration header (html5, html4.01, XHTML)
In html4.01 and XHTML each have 3 small specifications
strict strict
transitional ordinary
frameset Frame
html: Hypertext Markup Language; all "tag pairs" used in it
head
meta(charset:UTF-8,GB2312)
<meta name="description" content="Content to be described"/>
<meta name ="keywords" content="Keywords, keywords"/>
(The above two metas are for SEO optimization)
##
Inside
The basic syntax of the style:
Selector (div){
key:value
}
p{ height:40px; line-height:40px; background-color:red; }
Selector:
(Never use Chinese characters or numbers starting with the class name, be sure to use English)
2 Realize mutual jump between different pages and different modules
##List<ul> <li></li> <li></li> </ul>
<ol> <li></li> <li></li> </ol>
<dl> <dt>表头</dt> <dd>详情介绍</dd> </dl>
<input type="radio" name="sex"/>男 <input type="radio" name="sex"/>女
##Drop-down list
<select> <option name="city" value="bj">北京</option> <option name="city" value="sh">上海</option> <option name="city" value="sz">深圳</option> <select>
name and value are mainly used for the front-end to submit data to the background;
id:
In the JS stage, used to obtain the element
id matches a link to set the anchor point;
Button
Submit button type=submit
Reset button type=reset
Selector
The above is the detailed content of Summary of HTML+CSS knowledge points. For more information, please follow other related articles on the PHP Chinese website!