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