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