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