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