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