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