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