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