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