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