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