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