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