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