Skip to content

Commit

Permalink
docs: remember to include needed fonts!
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Zivolo committed Sep 10, 2017
1 parent 8e75295 commit a5a1aea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/4.0/getting-started/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Looking to quickly add Bootstrap to your project? Use the Bootstrap CDN, provide
Copy-paste the stylesheet `<link>` into your `<head>` before all other stylesheets to load our CSS.

{% highlight html %}
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<link rel="stylesheet" href="{{ site.cdn.css }}" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous">
{% endhighlight %}

Expand All @@ -42,7 +43,10 @@ Be sure to have your pages set up with the latest design and development standar
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<!-- Material Design for Bootstrap fonts and icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">

<!-- Material Design for Bootstrap CSS -->
<link rel="stylesheet" href="{{ site.cdn.css }}" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous">
</head>
<body>
Expand Down

0 comments on commit a5a1aea

Please sign in to comment.