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