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