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