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