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