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