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