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