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