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