Reputation: 1067
I am trying to get the same theme working as here: http://bootswatch.com/yeti/
However I would like to use the CDN version of bootstrap/bootswatch. One is available here: http://www.bootstrapcdn.com/ They also host the "yeti" theme that I would like to use.
However I am unable to get it working the way I think it should be.
What I have so far:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap CDN</title>
<meta charset="utf-8">
<link href="http://maxcdn.bootstrapcdn.com/bootswatch/3.2.0/yeti/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- main container -->
<div class="container">
<div class="page-header">
<h1 id="type">Typography</h1>
</div>
</div>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>
For simplicity, I would like to only show a title for now. But that title looks different than the one from the http://bootswatch.com/yeti/ website. Especially the font size. What I have to do in order to make it look the same is to add this line to the header:
<link href="http://bootswatch.com/assets/css/bootswatch.min.css" rel="stylesheet">
But I think this css is some kind of internal bootswatch css file that is hosted for the bootswatch.com website itself only and should not be used.
Of course I could download the bootswatch.min.css file and load it in the header. However, as it is nowhere stated to do that, I think this is the wrong way? What am I missing?
Upvotes: 0
Views: 1283
Reputation: 161
It looks like the font they're using on that bootswatch page for headings is Open Sans. Are you loading this font using a service like Google Web Fonts?
Upvotes: 1