Use on the webTotal Use [ 3587 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4f51269057b89319ca0486c500c61337?family=Grobe+Deutschmeister" 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/4f51269057b89319ca0486c500c61337?family=Grobe+Deutschmeister);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Grobe Deutschmeister";
src: url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.eot");
src: url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4f51269057b89319ca0486c500c61337.svg#Grobe Deutschmeister")format("svg");
}
2CSS rules to specify fonts
font-family: "Grobe Deutschmeister";