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