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