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