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