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