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