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