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