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