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