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