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