1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>Hello Bulma!</title>
7 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
8 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.0/css/bulma.min.css">
9 </head>
10 <body>
11 <section class="section">
12 <div class="container">
13 <h1 class="title">
14 Welcome to Bulma!
15 </h1>
16 <p class="subtitle">
17 My first website with <strong>Bulma</strong>!
18 </p>
19 </div>
20 </section>
21 </body>
22</html>
23
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>Hello Bulma!</title>
7 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
8 </head>
9 <body>
10 <section class="section">
11 <div class="container">
12 <h1 class="title">
13 Hello World
14 </h1>
15 <p class="subtitle">
16 My first website with <strong>Bulma</strong>!
17 </p>
18 </div>
19 </section>
20 </body>
21</html>