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