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