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