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