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