Latest web development tutorials

반응 형 웹 디자인 - 프레임

이 섹션에서는 반응 형 웹 디자인 프레임 워크 부트 스트랩을 소개합니다.

부트 스트랩은 트위터로부터, 가장 인기있는 프론트 엔드 프레임 워크이다. 부트 스트랩은 해당 웹 개발자 그래서 더 빨리, 간단하고 유연 HTML, CSS, 자바 스크립트 기반으로합니다.

< !DOCTYPE html >
< html lang= "en" >
< head >
< title > Bootstrap Example < /title >
< meta charset= "utf-8" >
< meta name= "viewport" content= "width=device-width, initial-scale=1" >
< link rel= "stylesheet" href= "http://apps.bdimg.com/libs/bootstrap/3.3.4/css/bootstrap.min.css" >
< script src= "http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" > < /script >
< script src= "http://apps.bdimg.com/libs/bootstrap/3.3.4/js/bootstrap.min.js" > < /script >
< /head >
< body >

< div class= "container" >
  < div class= "jumbotron" >
    < h1 >我的第一个 Bootstrap 页面< /h1 >
  < /div >
  < div class= "row" >
    < div class= "col-sm-4" >
      ...
    < /div >
    < div class= "col-sm-4" >
      ...
    < /div >
    < div class= "col-sm-4" >
    ...
    < /div >
  < /div >
< /div >

< /body >
< /html >

»시도

자세한 내용은 우리의 참조하시기 바랍니다 부트 스트랩 자료를 .