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