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