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