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