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