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