• 티스토리 홈
  • 프로필사진
    조별하
  • 방명록
  • 공지사항
  • 태그
  • 블로그 관리
  • 글 작성
조별하
  • 프로필사진
    조별하
    • 분류 전체보기 (124)
      • 1. 공부 (0)
        • 기술 면접 (0)
      • 2. 웹개발 (7)
        • Java (1)
        • IT 정보 (5)
        • Error 모음 (1)
      • 3. 개인관심 (1)
        • 전자 (1)
      • GITHUB (5)
      • IT 기술 면접 (3)
      • COMPUTER (2)
      • TASK (1)
      • LANGUAGES (20)
        • Python (3)
        • Django (6)
        • Java (7)
        • Node (1)
        • Jsp (2)
        • R (1)
      • 데이터과학 (2)
        • 머신러닝 및 딥러닝 (2)
      • DATABASE (5)
        • Oracle (2)
      • ISSUE (10)
        • Django (4)
        • Drf (2)
        • Javascript (1)
        • Git (1)
      • JAVA 교육 (65)
        • Java (3)
        • Jquery (2)
        • Sql (16)
        • Jdbc (1)
        • Db (2)
        • Jsp (9)
        • myWeb (15)
        • Servlet (4)
        • Spring (12)
        • Crawling (0)
        • Hosting (1)
      • 정보처리산업기사 (1)
      • EDUCATION (2)
        • IoT 서비스 (2)
  • 방문자 수
    • 전체:
    • 오늘:
    • 어제:
  • 최근 댓글
      등록된 댓글이 없습니다.
    • 최근 공지
        등록된 공지가 없습니다.
      # Home
      # 공지사항
      #
      # 태그
      # 검색결과
      # 방명록
      • bootstrap
        2019년 11월 22일
        • 조별하
        • 작성자
        • 2019.11.22.:17

        bootstrap

        참고 사이트 https://www.w3schools.com/bootstrap/default.asp

        부트스트랩은 트위터에서 사용하는 각종 레이아웃, 버튼, 입력창 등의 디자인을 CSS와 Javascript로 만들어 놓은 것이다.

        웹 디자이너나 개발자 사이에서는 웹 디자인의 혁명이라고 불릴 정도로 폭발적은 반응을 얻는 프레임워크이다.
        '프레임워크' 라고 하는 것은 재사용이 가능한 요소들의 집합되어 있으며,정해진 구조와 틀 안에서 이것들이 확장이 가능한 기반 코드로 이루어 짐을 뜻한다. jquery는 라이브러리이고, 부트스트랩은 프레임워크다.

        따라서, 우리는 '부트스트랩 프레임워크에서 jquery 라이브러리를 사용할 수 있다.'라고 말 할 수 있다.

        01_bootstrap시작(container)

        <!DOCTYPE html>
        <html lang="ko">
        <head>
          <title>01_bootstrap시작(container).html</title>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
                                      <!--부트스트랩을 사용하기 위한 용어  -->
          <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
                                      <!--부트스트랩은 기본적으로 jQuery가 기본적으로 깔려 있다  -->
          <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
        </head>
        <body>
        
        <div class="container">
          <h1>My First Bootstrap Page</h1>
          <p>This part is inside a .container class.</p> 
          <p>The .container class provides a responsive fixed width container.</p>           
        </div>
        
        </body>
        </html>

        ▶화면 출력

        image

        02_bootstrap시작(container-fluid)

        <!DOCTYPE html>
        <html lang="ko">
        <head>
          <title>Bootstrap Example</title>
          <meta charset="utf-8">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
          <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
        </head>
        <body>
        
        <div class="container-fluid">
          <h1>My First Bootstrap Page</h1>      
          <p>This part is inside a .container-fluid class.</p> 
          <p>The .container-fluid class provides a full width container, spanning the entire width of the viewport.</p>           
        </div>
        
        </body>
        </html>

        ▶화면 출력

        image

        03_bootstrap시작(오픈소스 다운)

        1,2 는 코드를 발채 해서 가져왔지만
        오픈소스를 다운받아서 해보자
        다운로드 링크: https://getbootstrap.com/docs/4.3/getting-started/introduction/

        다운로드 받은 bootstrap

        image

        <!DOCTYPE html>
        <html lang="ko">
        <head>
          <meta charset="utf-8">
          <title>03_bootstrap시작(오픈소스 다운).html</title>
            <meta name="viewport" content="width=device-width, initial-scale=1">
          <link rel="stylesheet" href="css/bootstrap.min.css">
          <script src="js/jquery.min.js"></script>
          <script src="js/bootstrap.min.js"></script>
        </head>
        <body>
          <div class="container-fluid">
          <h1>My First Bootstrap Page</h1>      
          <p>This part is inside a .container-fluid class.</p> 
          <p>The .container-fluid class provides a full width container, spanning the entire width of the viewport.</p>           
        </div>
        
        </body>
        </html>

        내컴퓨터 환경에 맞게 설정

        image

        bootstrap 발췌

        04_media_Query

        image

        05_grid2,3단

        imageimage

        06_simply me

        image

        07_company

        image

        08_band

        image

        'JAVA 교육 > myWeb' 카테고리의 다른 글

        2019/09/11 6. 로그인  (0) 2019.11.22
        2019/09/11 5. session&application  (0) 2019.11.22
        2019/09/10 4. scope  (0) 2019.11.22
        2019/09/10 3. 페이징  (0) 2019.11.22
        2019/09/09 2. 검색 창  (0) 2019.11.22
        다음글
        다음 글이 없습니다.
        이전글
        이전 글이 없습니다.
        댓글
      조회된 결과가 없습니다.
      스킨 업데이트 안내
      현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
      ("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)
      목차
      표시할 목차가 없습니다.
        • 안녕하세요
        • 감사해요
        • 잘있어요

        티스토리툴바