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