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