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