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