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