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