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