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