1, the complete site needs to learn the content:
Front end:html CSS JS
Database:SQL Server
Dynamic parts:. Net\c#\vs , etc.
The relationship between:
HTML: Is the basic language of the content that constitutes a Web page.
CSS: Beautify the look of a Web page
JS: Do Web effects, the implementation of Web page action.
The client sends a request to the server, andIIS(the program that runs the Web site) determines whether it is a static web page and directly accesses it directly on the server to find the corresponding page.
If you do not let the appropriate daemon run (for example,. NET), then return the results to the client.
Simply saythe request and the corresponding (response).
2. What is HTML?
HTML is a Hypertext Markup language, and the current version is HTML 4.01 , and HTML consists of a single label , like :<p></p> , <div></div> and so on.
HTML5 only adds some new features to the existing base.
3, The structure of HTML
HTML document formed using DW
Zhong <! doctype> Document declaration specifying which version (XHTML 1.0) the current HTML resolves.
XMLS: namespace of the label. The label of this website is come to http://www.w3.org/1999/xhtml this URL.
<meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/> specifies that the default encoding is utf-8.
4 . Formatting of HTML tags
< tag name property = " attribute value " ></ tag name >
5, control the text layout of the Mark :
Line break:<br/>
Horizontal line: properties:width: Breadth,size: size (equivalent to height),align : Location ( Center , Left , Right ), Color (color)
Space:
Paragraph:<p></p>
Center:<center></cener>
6, paragraph label H1~h6:
7. Special Text style:
b: Bold
I: Italic
U: Underline
S: Strikethrough
SUP: Displays text above the font type
Sub: Displays text in the following font style
Display effect:
8,body Tag properties:bgcolor-- background color,background-- background image, Text: Font color.
Note: When you set the style of the page, you use CSS to set it, not to use the properties of the tag itself to set.
September 17, 2015 first class Html1-1