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