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