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