Bootstrap 3.x:http://v3.bootcss.com/
The basic template is as follows:
<!DOCTYPE HTML><HTMLLang= "ZH-CN"> <Head> <MetaCharSet= "Utf-8"> <!--IE uses the latest rendering mode - <Metahttp-equiv= "X-ua-compatible"content= "Ie=edge"> <!--Initializing the mobile browsing display, broadband equals the width of the device, the initial scale is 1, and specifies whether the user can scale the view of the Web page. "Is the user-scalable instruction, which allows the user to zoom when the value is yes, and does not allow zooming when the value is no. - <Metaname= "Viewport"content= "Width=device-width, initial-scale=1"> <title>Bootstrap Basic</title> <!--Bootstrap - <Linkhref= "Http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"rel= "stylesheet"> <!--HTML5 Shim and Respond.js for IE8 supports of HTML5 elements and media queries,bootstrap do not support IE7 and the following - <!--html5shiv.min.js let ie6-8 identify HTML5 new elements - <!--[If Lt IE 9]> <script src= "Http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js" ></script> <script src= "Http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js" ></script> <! [EndIf] - </Head> <Body> <Divclass= "Text-center"> <H1>Hello World</H1> <Buttontype= "button"class= "btn btn-primary btn-lg">I am the button, press me!</Button> </Div> <Scriptsrc= "Http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></Script> <Scriptsrc= "Http://cdn.bootcss.com/bootstrap/3.2.0/js/bootstrap.min.js"></Script> </Body></HTML>
1-bootstrap Basic Templates