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