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