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