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