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