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