https://getbootstrap.com/에서 다운로드 받을 수 있습니다.

• 실습은 다운로드를 받지 않고 진행하니 다운로드를 안받으셔도 됩니다

Bootstrap

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ca843ea8-4588-4f0d-baa0-348c94f9a8f1/Untitled.png

부트스트랩을 이용한다면 다음과 같은 여러 레이아웃을 만들 수 있습니다. 부트스트랩 공식 홈페이지에서 Examples 탭에서 다양한 레이아웃을 확인해보세요!

유료 템플릿 사이트는 https://wrapbootstrap.com/ 를 참고해보세요.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/cacb2d9f-b88d-4988-9fc1-d1ef566ae716/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/5e1d9b9b-06c8-43b4-9bc5-e47fda779fc3/Untitled.png

자, 이제 부트스트랩을 적용시켜 보도록 하겠습니다. 다음과 같이 작성하신 다음 001.html로 저장해주세요. 핵심적인 코드만 넣어두었습니다. 그리고 다음 버전에서는 jQuery가 없어지니 이 점도 유념해주세요.

아래 코드 작성 시점은 21년 8월 입니다. 이 버전이 너무 오래되었다면 notion에서 commet 부탁드립니다.

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link href="<https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css>" rel="stylesheet">

    <title>Hello, world!</title>
  </head>
  <body>
    <!-- 기본 UI -->
    <!-- Bootstrap4에 비해 jquery 없음 -->
    <!-- 한국 홈페이지는 들어가지 말것, class 이름 다름 -->
    <h1>hello world</h1>

    <!-- JavaScript -->
    <script src="<https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js>"></script>
  </body>
</html>

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Bootstrap demo</title>
    <link href="<https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css>" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
  </head>
  <body>
    <h1>Hello, world!</h1>
    <script src="<https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js>" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
  </body>
</html>