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