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