Use on the webTotal Use [ 5226 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/972e94af85fd89bc809791fbf22fee9b?family=Grandfather+Alternates" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/972e94af85fd89bc809791fbf22fee9b?family=Grandfather+Alternates);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Grandfather Alternates";
src: url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.eot");
src: url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/972e94af85fd89bc809791fbf22fee9b.svg#Grandfather Alternates")format("svg");
}
2CSS rules to specify fonts
font-family: "Grandfather Alternates";