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