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