Html is a container for css/js and also provide some simple style, css provide more complex style, js controls behavior.
When writing html, first arrange the layout, outside in, then fill the detailed content, for example, first <html></html>, then <head></head> <body></body>, then fill <head> section and <body> section, and so on. Using <div> to define section.
Using <link> tag imports dependent external css files and using <script> tag imports dependent external js files in <head> section.
Adding dependent external sources such as css files or js files at the top of html file in <head> section.
posted on
2013-03-09 13:37
chuwachen
阅读(
108)
评论()
编辑
收藏
举报