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