Preparation work for H5 responsive development

Preparation

When we use H5 to make pages, we need to introduce the Bootstrap plug-in and log in to http://v3. bootcss.com/

Choose to downloadQQ截图20161101174924.png

There will be three folders inside, namely fonts, css and js. We need to introduce actually three folders document.

<!DOCTYPE html>
 <html lang="zh-cn">
 <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
    <title>PHP中文网</title>
    <link rel="stylesheet" href="css/bootstrap.min.css">
 </head>
 <body>
 <script src="js/jquery.min.js"></script>
 <script src="js/bootstrap.min.js"></script>
 <script type="text/javascript">
 </script>
 
 </body>
 </html>

Required html file

index.html Home page file

information.html Consultation file

case.html                                                                                                                                                                                                                                                          A practical tutorial to explain the idea of ​​developing a responsive web page.

The order of web page development is

Home Page》Information Page》Content Page》Case》About

Continuing Learning
||
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no"> <title>PHP中文网</title> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> <body> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> <script type="text/javascript"> </script> </body> </html>
submitReset Code