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