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