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