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