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