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