diff --git a/client/src/pages/guide/english/bulma/get-started/index.md b/client/src/pages/guide/english/bulma/get-started/index.md new file mode 100644 index 0000000000..7f218e9b53 --- /dev/null +++ b/client/src/pages/guide/english/bulma/get-started/index.md @@ -0,0 +1,59 @@ +--- +title: Get Started +--- +## Get Started + +There are several ways to get started with Bulma. +* npm install the bulma package. +* cdnjs CDN to link to the bulma stylesheet. +* use the Github Repository to get the latest development version. + +1) Using npm +```terminal +$ npm install bulma +``` +2) Use the cdnjs CDN +https://cdnjs.com/libraries/bulma + +3) Download from the repository +https://github.com/jgthms/bulma/tree/master/css + +### Code requirements + +For bulma to work correctly, you need to make your webpage responsive. +1) Use HTML5 doctype +```html + +``` +2) Add the responsive viewport meta tag +```html + +``` +3) Starter Template +```html + + +
+ + ++ My first website with Bulma! +
+