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