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