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