HTML, CSS, และ JS framework สำหรับนักออกแบบเว็บไซต์ รองรับ Responsiveness Design โดยที่เราไม่ต้องเขียน CSS หรือ JS ขึ้นมาเองเพียงแค่เรียกใช้ Class ให้ถูกต้อง เราก็ได้เว็บไซต์ดีไซด์สวยๆแล้วครับ
ตัวอย่างเว็บไซต์ที่ใช้ Bootstrap ช่วยในการออกแบบ http://expo.getbootstrap.com/
แบบ CDN (Bootstrap CDN) ใส่โค๊ดด้านล่างนี้ใว้ในส่วนของ <head>
1 2 3 4 5 |
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> |
หรือจะดาวน์โหลดมาใช้งานแล้วใส่ โค๊ดด้านล่างใว้ใน <head>
1 |
<link href="css/bootstrap.min.css" rel="stylesheet"> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>Hello, world!</h1> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html> |
See the Pen Use Bootstrap by Suttipong Choysakda (@nathanbc46) on CodePen.
ป้ายกำกับ:Bootstrap