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