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