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