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