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