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