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