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