Bulma Cdn Code Example


Example 1: bulma cdn

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">

Example 2: bulma css cdn

<!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 World       </h1>       <p class="subtitle">         My first website with <strong>Bulma</strong>!       </p>     </div>   </section>   </body> </html>

Example 3: getting started with bulma

<!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.8.0/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>

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?