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