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