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