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