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