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