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