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