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