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