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