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