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