Hi everyone,
I’d like my font style to use one of Google Font’s font.
This is a demo I use of how to do so:
<html>
<head>
<link rel="stylesheet" type="text/css"
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>
Uploading the above page I see this on my display:
Unfortunately, “Tangerine” is not the font I need.
From “Google Font” selection showm in the following image:
When you select the font, Google gives you the exact code to use in your <head>, and in the CSS. Were you careful to copy that code exactly, and place it in the correct location?
The font will work in the non-English alphabet.
It’s just that the text that you have on the page is in English.
Just insert some text in the language and alphabet you want.