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