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