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