중고 신입이 개발해보기..

Bulma 로 시작하기 본문

Front-End/html5-css

Bulma 로 시작하기

rootkaien 2018. 12. 11. 16:13




기본 시작하기 코드 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css">
    <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
  </head>
  <body>
  <section class="section">
    <div class="container">
      <h1 class="title">
        Hello World
      </h1>
      <p class="subtitle">
        My first website with <strong>Bulma</strong>!
      </p>
    </div>
  </section>
  </body>
</html>
cs


'Front-End > html5-css' 카테고리의 다른 글

CSS 메모  (0) 2020.04.21
[Bulma] 정보  (0) 2019.10.04
CSS에 대한 메모 ..  (0) 2018.09.20
CSS를~~~  (0) 2018.05.11
Comments