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