본문 바로가기

프로그램 강좌

[Bulma]Hello World

Bulma

Bulma CSS FrameWork 강좌 시작하겠습니다. 강좌 모든 내용은 https://bulma.io/ 에서 한국어 메뉴얼 생성했습니다.

설치방법

설치방법은 너무 간단합니다. Node.js가 설치된 상태에서 터미널에 아래 명령어를 실행해주면 됩니다.

yarn add bulma

설치 끝

잘 설치됐는지 확인용 html 생성해보겠습니다.

index.html

root ㄴindex.html

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Hello Bulma!</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
  </head>
  <body>
  <section class="section">
    <div class="container">
      <h1 class="title">
        Hello Bulma
      </h1>
      <p class="subtitle">
        My first website with <strong>Bulma</strong>!
      </p>
    </div>
  </section>
  </body>
</html>

방금 만든 index.html을 실행해보겠습니다. Hello Bulma가 잘 보이나요?



728x90

'프로그램 강좌' 카테고리의 다른 글

[javascript]배열에서 제거 splice  (0) 2021.02.22
[Bulma]버튼  (0) 2020.12.13
[Bulma]벌마 CSS 프레임워크  (0) 2020.12.11
[윈도우]Yarn 설치방법  (0) 2020.12.08
[react.js]게시판 만들기2: 읽고 쓰기  (0) 2020.05.07