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