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