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