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