Tip: How to make web beautiful with Google fonts
You don't need to program; you just need to add a special stylesheet link to your HTML document and make reference to a font in a CSS style.
Copies and pastes the following HTML content into a document:
<html>
<head>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Tangerine">
<style>
body {
font-family: 'Tangerine', serif;
font-size: 48px;
}
</style>
</head>
<body>
<div>Making the Web Beautiful!</div>
</body>
</html>
-
Hi! How would you apply this in the Copenhagen Theme? I added the
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat">in the document_head.hbs file and changed the fonts in style.css, but to no avail.
Thanks!
***EDIT***
I found that i didn't change the $text_font and $heading_font tags. Now it works like a charm
Iniciar sesión para dejar un comentario.
1 Comentarios