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