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