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