Created
September 15, 2020 21:16
-
-
Save Khahory/a018caa2eacea9d587f02a297a6f9dff to your computer and use it in GitHub Desktop.
Div con imagen de fondo - Bulma
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<section class="hero is-success is-fullheight has-bg-img"> | |
<div class="hero-body"> | |
<div class="container has-text-centered"> | |
<h1 class="title"> | |
Title | |
</h1> | |
<h2 class="subtitle"> | |
Subtitle | |
</h2> | |
</div> | |
</div> | |
</section> | |
</div> | |
<script> | |
const app = new Vue({ | |
el: '#app', | |
data: { | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment