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