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