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