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