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