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