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