scrimba
Bulma CSS
Columns in Bulma CSS
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Columns in Bulma CSS
AboutCommentsNotes
Columns in Bulma CSS
Expand for more info
index.html
run
preview
console
<!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.0/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- <link rel="stylesheet" href="styles/debug.css"> -->
<style>

.center {
display: flex;
justify-content: center;
align-items: center;
}

</style>
</head>
<body>

<!-- .hero -->
<section class="hero is-fullheight has-background-black">
<div class="hero-body">
<div class="container">
<figure class="image center">
<img src="images/bulma-logo-white.png" style="max-width: 512px;">
</figure>
</div>
</div>
</section>
<!-- /.hero -->

</body>
</html>
Console
index.html
-3:50