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