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